-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
56 lines (53 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./assets/favicon.png" type="image/png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script type="module" src="main.js" defer></script>
<title>30 Days of JavaScripts</title>
</head>
<body>
<div class="container">
<header>
<h1>30 Days of JavaScript</h1>
</header>
</div>
<div class="container">
<main>
<p>
YouTuber <a href="https://www.youtube.com/@GreatStackDev">GreatStack</a>
published one <a href="https://www.youtube.com/watch?v=66jEvYL1Re0">video</a>
anncouncing <a href="https://greatstack.dev/30-javascript-projects/">30 Days of JavaScript Challenge</a>.
I commited to the challenge on 6th of July 2023, and completed it on
1st of August. In that time I have created 30 JavaScript projects and
published them in Netlify and GitHub Pages. And made sure all the
websites are responsive and only written in HTML, CSS and JavaScript.
</p>
<section>
<table>
<thead>
<tr>
<th>Sl No</th>
<th>Project Name</th>
<th>Code</th>
<th>GitHub Pages Link</th>
<th>Netlify Link</th>
<th>Timeline</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</section>
</main>
</div>
<div class="container">
<footer>Copyright © 2023 Ritam Chakraborty</footer>
</div>
</body>
</html>