-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathindex.html
93 lines (86 loc) · 3.38 KB
/
index.html
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
<head>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="BannerStyle.css" />
<link rel="stylesheet" href="Footer.css" />
<link
rel="shortcut icon"
type="image/x-icon"
href="https://www.computerhope.com/jargon/j/javascript.png"
/>
<meta name="theme-color" content="#daa37f" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>JavaScript Projects</title>
<script src="https://kit.fontawesome.com/32ceed9cc4.js"></script>
<script src="https://unpkg.com/scrollreveal"></script>
</head>
<body>
<div class="banner">
<div class="banner__overlay">
<div class="banner__container">
<h1 class="banner__title">JavaScript Projects</h1>
<p class="banner__text">
Find best mini projects using Html CSS JavaScript
</p>
<a href="#Bottom" class="btnBanner btn--opacity">Projects</a>
</div>
<a href="#Bottom">
<img
class="banner__scroll-down"
src="data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxMjkgMTI5IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjkgMTI5IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4Ij4KICA8Zz4KICAgIDxwYXRoIGQ9Im0xMjEuMywzNC42Yy0xLjYtMS42LTQuMi0xLjYtNS44LDBsLTUxLDUxLjEtNTEuMS01MS4xYy0xLjYtMS42LTQuMi0xLjYtNS44LDAtMS42LDEuNi0xLjYsNC4yIDAsNS44bDUzLjksNTMuOWMwLjgsMC44IDEuOCwxLjIgMi45LDEuMiAxLDAgMi4xLTAuNCAyLjktMS4ybDUzLjktNTMuOWMxLjctMS42IDEuNy00LjIgMC4xLTUuOHoiIGZpbGw9IiNGRkZGRkYiLz4KICA8L2c+Cjwvc3ZnPgo="
/>
</a>
</div>
</div>
<div class="projects">
<a id="Bottom"></a>
<h1 class="heading">Projects</h1>
<!-- search bar for the javascript games -->
<div class="search-bar">
<input type="text" id="searchInput" placeholder="Search for games..." />
<button onclick="searchGames()"> Search</button>
</div>
<!-- cards for the javascript games -->
<ul class="cards"></ul>
<script src="script.js"></script>
</div>
<div class="footer">
<div class="footer__links">
<div class="col social">
<h1>Creator</h1>
<a target="_blank" class="a" href="https://github.com/shrey141102"
>Shreyansh Khaitan <i class="fa-brands fa-github font"></i
></a>
</div>
<h1 class="slash">/</h1>
<div class="col social">
<h1>Website by</h1>
<a target="_blank" class="a" href="https://github.com/Infinite-Null"
>Ankit Kumar Shah <i class="fa-brands fa-github font"></i
></a>
</div>
<h1 class="slash">/</h1>
<div class="col social">
<h1>Repository</h1>
<a
target="_blank"
class="a"
href="https://github.com/shrey141102/Javascript-projects"
>Github <i class="fa-brands fa-github font"></i
></a>
</div>
</div>
<div class="footer__copy">
<p><a href="#"> Home </a></p>
<p><a href="#">Contact</a></p>
<p>© 2023 Javascript-projects. All rights reserved.</p>
<p><a href="#">About</a></p>
<p><a href="#">Contribute</a></p>
</div>
<div class="clearfix"></div>
</div>
<!-- Scroll to top button -->
<button id="top" title="Go to top">
<i class="fa-solid fa-arrow-up"></i>
</button>
<script src="ScrollReveal.js"></script>
</body>