forked from zero-to-mastery/Animation-Nation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (43 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous"
/>
<link rel="shortcut icon" href="ZTM.png" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="/public/style.css" />
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css"
/>
<link rel="icon" href="ZTM_SimardeepSingh-zsh.ico" type="image/x-icon" />
<title>Animation Nation - ZTM Hacktoberfest</title>
</head>
<body>
<div id="header">
<h1>Animation Nation</h1>
<h2>A ZTM Challenge for Hacktoberfest</h2>
<input id="search-bar" placeholder=" 🔍 Search art or author" />
</div>
<!-- <main> -->
<ul class="flex" id="cards">
<!-- Content is generated dynamically -->
<!-- Add your card in include.js following the instructions -->
</ul>
<!-- </main> -->
<div class="go-to-top">
<span>↑</span>
<!-- Use an upward arrow character -->
</div>
<footer id="footer">
<div>© 2023 Zero To Mastery Inc.</div>
</footer>
<script src="include.js"></script>
</body>
</html>