-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (80 loc) · 3.57 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
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS Projects</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="main-menu-title">VANILLA JS PROJECTS</a></h1>
</header>
<main>
<section class="project">
<h3 class="title">SIMPLE CALCULATOR</h3>
<a class="thumb" href="./Projects/Calc/index.html"><img src="thumbnails/calc.png" alt="a simple calculator"></a>
</section>
<section class="project">
<h3 class="title">MUSIC APP</h3>
<a class="thumb" href="./Projects/MusicApp/index.html"><img src="thumbnails/musicApp.png" alt="a music app"></a>
</section>
<section class="project">
<h3 class="title">BLOCK KILLER</h3>
<a class="thumb" href="./Projects/blockKiller/index.html"><img src="thumbnails/blockKiller.png" alt="a block killer"></a>
</section>
<section class="project">
<h3 class="title">CLOCK</h3>
<a class="thumb" href="./Projects/Clock/index.html"><img src="thumbnails/Clocks.png" alt="a clock"></a>
</section>
<section class="project">
<h3 class="title">TO DO LIST</h3>
<a class="thumb" href="./Projects/ToDoList/index.html"><img src="thumbnails/toDoList.png" alt="to do list"></a>
</section>
<section class="project">
<h3 class="title">SNAKE</h3>
<a class="thumb" href="./Projects/Snake/index.html"><img src="thumbnails/snake.png" alt="a snake"></a>
</section>
<section class="project">
<h3 class="title">PASSWORD GENERATOR</h3>
<a class="thumb" href="./Projects/PasswordGenerator/index.html"><img src="thumbnails/passwordGenerator.png" alt="a password generator"></a>
</section>
<section class="project">
<h3 class="title">BOOK LIST</h3>
<a class="thumb" href="./Projects/BookList/index.html"><img src="thumbnails/BookList.png" alt="a book list"></a>
</section>
<section class="project">
<h3 class="title">RELAX APP</h3>
<a class="thumb" href="./Projects/RelaxApp/index.html"><img src="thumbnails/RelaxApp.png" alt="a relax app"></a>
</section>
<section class="project">
<h3 class="title">QUIZ APP</h3>
<a class="thumb" href="./Projects/QuizApp/index.html"><img src="thumbnails/quizApp.png" alt="a quiz app"></a>
</section>
<section class="project">
<h3 class="title">WEATHER APP</h3>
<a class="thumb" href="./Projects/WeatherApp/index.html"><img src="thumbnails/weatherApp.png" alt="a weather app"></a>
</section>
<section class="project">
<h3 class="title">PING PONG</h3>
<a class="thumb" href="./Projects/pingPongGame/index.html"><img src="thumbnails/pingPong.png" alt="a ping pong game"></a>
</section>
<section class="project">
<h3 class="title">TETRIS</h3>
<a class="thumb" href="./Projects/tetris/index.html"><img src="thumbnails/tetris.png" alt="a tetris game"></a>
</section>
<section class="project">
<h3 class="title">VIDEO PLAYER</h3>
<a class="thumb" href="./Projects/videoPlayer/index.html"><img src="thumbnails/videoplayer.png" alt="a custom video player"></a>
</section>
<section class="project">
<h3 class="title">HANGMAN</h3>
<a class="thumb" href="./Projects/hangman/index.html"><img src="thumbnails/hangman.png" alt="a hangman game"></a>
</section>
<section class="project">
<h3 class="title">TYPEGAME</h3>
<a class="thumb" href="./Projects/typeGame/index.html"><img src="thumbnails/typeGame.png" alt="a typegame game"></a>
</section>
</main>
</body>
</html>