-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 975 Bytes
/
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Main Page of 100Days100Projects</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
<!-- Fathom - beautiful, simple website analytics -->
<script
src="https://cdn.usefathom.com/script.js"
site="FXSWPOHD"
defer
></script>
<script async defer data-domain="projects.bhanuteja.dev" src="https://plausible.io/js/plausible.js"></script>
</head>
<body>
<div class="container">
<h1>100 Days 100 Projects</h1>
<h2>Projects</h2>
<ul id="list"></ul>
</div>
<script src="./script.js"></script>
</body>
</html>