-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="./style.css" />
<body style="background-color: #212121; color: #fff">
<nav>
<a href="/" aria-current="page">Home</a>
</nav>
<main>
<h1>JavaScript projects</h1>
<div class="projects">
<a class="project-link" href="./1-colorChanger/index.html">Project 1 - Color Changer 🔥</a>
<a class="project-link" href="./2-BMICalculator/index.html">Project 2 - BMI Calculator ☕️</a>
<a class="project-link" href="./3-digitalClock/index.html">Project 3 - Digital clock 😎</a>
<a class="project-link" href="./4-guessNumber/index.html">Project 4 - Guess the number 🤨</a>
<a class="project-link" href="./5-todo/index.html">Project 5 - To-Do List 👻</a>
<a class="project-link" href="./6-KeybordCheck/index.html">Project 6 - Keyboard check 👻</a>
<a class="project-link" href="./7-UnlimitedColors/index.html">Project 7 - Unlimited Colors 🧠</a>
<a class="project-link" href="./8-Quiz/index.html">Project 8 - Quiz ❓</a>
<a class="project-link" href="./9-SnakeWaterGun/index.html">Project 9 - Snake, Water and Gun 🐍</a>
<a class="project-link" href="./10-randomJokes/index.html">Project 10 - Random Jokes 😂
</a>
<a class="project-link" href="./11-hackerman/index.html">Project 11 - Hackerman 👨💻
</a>
<a class="project-link" href="./12-Weather-App/index.html">Project 12 - Weather App
</a>
<a class="project-link" href="./13-Image-Search-Engine/index.html">Project 13 - Image Search Engine
</a>
</div>
</main>
</body>
<script type="module" src="script.js"></script>
</head>
</html>