-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (67 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<a href="index.html" aria-current="page">Home</a>
</nav>
<article class="container">
<section class="block-1">
<img class="link-tree-img" src="./assets/avatar.png" alt="avatar" />
<h1>JavaScript Projects</h1>
</section>
<section class="block-2">
<ul class="no-bullets link-tree">
<li class="box-1">
<a class="project-link" href="./1-colorChanger/index.html"
>Project 1 - color Changer 🔥</a
>
</li>
<li class="box-2">
<a class="project-link" href="./2-BMICalculator/index.html"
>Project 2 - BMI Generator ☕️</a
>
</li>
<li class="box-3">
<a class="project-link" href="./3-DigitalClock/index.html"
>Project 3 - Digital clock 😎</a
>
</li>
<li class="box-4">
<a class="project-link" href="./4-GuessTheNumber/index.html"
>Project 4 - Guess the number 🤨</a
>
</li>
<li class="box-5">
<a class="project-link" href="./5-keyboard/index.html"
>Project 5 - Keyboard check 👻</a
>
</li>
<li class="box-5">
<a class="project-link" href="./6-unlimitedColors/index.html"
>Project 6 - Unlimited Colors 🧠
</a>
</li>
<li class="box-5">
<a class="project-link" href="./7-rock-paper-scissor/index.html"
>Project 7 - Rock Paper Scissor 👀
</a>
</li>
<li class="box-6">
<a
class="project-link"
href="./8- International Space Station Locator/index.html"
>Project 8 - International Space Station Locator 🚀
</a>
</li>
</ul>
</section>
</article>
</body>
<script src="script.js"></script>
</html>