-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PROJECTS</title>
<link rel="stylesheet" href="style.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="projects-link" href="./1-colorChanger/index.html">Color Changer</a>
</div>
<div class="projects">
<a class="projects-link" href="./2-BmiCalculator/index.html">Bmi Calculator</a>
</div>
<div class="projects">
<a class="projects-link" href="./3-DigitalClock/index.html">DigitalClock</a>
</div>
<div class="projects">
<a class="projects-link" href="./3-GuessTheNumber/index.html">Guess the number</a>
</div>
</main>
</body>
</html>