forked from Vishal-raj-1/Awesome-JavaScript-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.html
More file actions
165 lines (156 loc) · 5.18 KB
/
projects.html
File metadata and controls
165 lines (156 loc) · 5.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="JavaScript Projects that can help you a lot in your journey. This projects are free for use. "
/>
<title>Projects | Awesome JavaScript</title>
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="shortcut icon" href="./assets/Images/favicons/faviconss.png" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Darkmode.js CDN -->
<script src="https://cdn.jsdelivr.net/npm/darkmode-js@1.5.7/lib/darkmode-js.min.js"></script>
<!-- separate css file for Darkmode included -->
<link rel="stylesheet" href="index.css" />
</head>
<body>
<!--CSS Preloader-->
<div id="spinner-wrapper">
<div class="sk-folding-cube">
<div class="sk-cube1 sk-cube"></div>
<div class="sk-cube2 sk-cube"></div>
<div class="sk-cube4 sk-cube"></div>
<div class="sk-cube3 sk-cube"></div>
</div>
</div>
<a id="goToTop" href="#top">
<i class="fa fa-arrow-up" aria-hidden="true"></i>
</a>
<main id="top">
<!-- Added Header -->
<header>
<nav>
<h2 class="shadow"><a href="index.html">Awesome JavaScript</a></h2>
<i
class="fa fa-bars"
aria-hidden="true"
id="menuBar"
onclick="menu()"
></i>
<i
class="fa fa-times"
aria-hidden="true"
id="menuClose"
onclick="menuClose()"
></i>
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="projects.html" class="active">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="signuplogin.html">Signup/Login</a></li>
<li>
<a
href="https://github.com/Vishal-raj-1/Awesome-JavaScript-Projects"
target="_blank"
class="github githubs"
><i class="fa fa-github" aria-hidden="true"></i
></a>
</li>
</ul>
</nav>
<div class="bannerSection">
<div class="bannerText">
<h1>JavaScript Projects</h1>
<h2>
The great collection of JavaScript projects, <br />just for you!!!
</h2>
<div class="buttonCenter">
<a href="#project" class="commanBtn">Get Started</a>
<a
href="https://github.com/Vishal-raj-1/Awesome-JavaScript-Projects"
target="_blank"
class="github"
><i class="fa fa-github" aria-hidden="true"></i> Github</a
>
</div>
</div>
<div class="bannerIllustration">
<img
src="./assets/Images/projectsaat.png"
alt="Project Illustration"
/>
</div>
</div>
</header>
<!-- Header Closed -->
<!-- Path -->
<div class="path">
<h2>Helping you, is our aim.</h2>
<p><a href="index.html">Home</a> / Projects</p>
</div>
<!-- Path -->
<!-- Added Project -->
<section class="body" id="project">
<h2>Awesome JavaScript Projects</h2>
<hr />
<!-- Add Serach Box here in future -->
<br />
<form class="search-box" id="searchForm">
<input
type="text"
placeholder="Search for any project"
name="search"
id="searchBar"
class="search-txt"
/>
<button id="searchBtn" class="search-btn" type="submit">
<i class="fa fa-search fa-lg"></i>
</button>
</form>
<br />
<br />
<!-- -->
<div class="project-section" id="js-projects"></div>
</section>
<!-- Closed Projects -->
<!-- Added Footer -->
<footer>
<p>
©
<script>
document.write(new Date().getFullYear());
</script>
Copyright. <b>Awesome JavaScript Project</b>. All Rights Reserved.
</p>
<p>
Design by
<a href="https://cratonik.com" target="_blank" rel="follow"
>Cratonik</a
>
</p>
</footer>
<!-- Closed Footer -->
</main>
<script src="./assets/js/scripts.js"></script>
<script src="script.js"></script>
<!-- a separate js file for Darkmode -->
<script src="./index.js"></script>
<script src="./assets/js/scripts.js"></script>
<script src="script.js"></script>
</body>
</html>