-
Notifications
You must be signed in to change notification settings - Fork 47
/
index.html
72 lines (71 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="styles.css" />
<script type="module" src="script.js"></script>
</head>
<body style="background-color: #212121; color: #fff">
<nav>
<a href="/" aria-current="page">Home</a>
<a target="_blank" href="https://www.youtube.com/@chaiaurcode"
>Youtube channel</a
>
</nav>
<main>
<h1>Chai aur code</h1>
<div class="projects">
<a class="project-link" style="" href="./1-colorChanger/index.html"
>Project 1 - color Changer 🔥</a
>
<a class="project-link" href="./2-BMICalculator/index.html"
>Project 2 - BMI Generator ☕️</a
>
<a class="project-link" href="./3-DigitalClock/index.html"
>Project 3 - Digital clock 😎</a
>
<a class="project-link" href="./4-GuessTheNumber/index.html"
>Project 4 - Guess the number 🤨</a
>
<a class="project-link" href="./5-keyboard/index.html"
>Project 5 - Keyboard check 👻</a
>
<a class="project-link" href="./6-unlimitedColors/index.html"
>Project 6 - Unlimited Colors 🧠
</a>
<a class="project-link" href="./7-scroll/index.html"
>Project 7 - Scroll like NextJS 👀</a
>
<a class="project-link" href="./8-typer/index.html"
>Project 8 - Your typer library 📚
</a>
<a class="project-link" href="./9-mouseCircle/index.html"
>Project 9 - Mouse Circle 📚
</a>
<a class="project-link" href="./10-emoji/index.html"
>Project 10 - Emoji 🫥
</a>
<a class="project-link" href="./11-textEditor/index.html"
>Project 11 - Text Editor ✍️
</a>
<a class="project-link" href="./12-randomImage/index.html"
>Project 12 - Random Image 🌠
</a>
<a class="project-link" href="./13-jokes/index.html"
>Project 13 - Jokes 😂
</a>
<a class="project-link" href="./14-cats/index.html"
>Project 14 - cats 🐈
</a>
<a class="project-link" href="./15-crudDom/index.html"
>Project 15 - DOM Crud 📌
</a>
<a class="project-link" href="./16-debounce/index.html"
>Project 16 - Debouncing 🏀
</a>
</div>
</main>
</body>
</html>