-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
index.html
37 lines (33 loc) · 1.04 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
<!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="stylesheet" type="text/css" href="./public/styles.css" />
<link rel="icon" type="image/png" href="./public/favicon.ico" />
<title>Animation Nation - ZTM Hacktoberfest</title>
</head>
<body>
<div id="header">
<h1>Animation Nation</h1>
<p id="stats"></p>
</div>
<div class="card-container">
<ul class="flex" id="cards">
<!-- Content is generated dynamically -->
<!-- Do not add your card here -->
</ul>
</div>
<div class="go-to-top">
<span>↑</span>
<!-- Use an upward arrow character -->
</div>
<script src="./public/includes.js"></script>
</body>
</html>