-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
109 lines (81 loc) · 2.39 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="assets/favicon.png">
</head>
<body class="body">
<div class="header">
<h2 class="text-center p-4 heading">JAVASCRIPT PROJECTS </h2>
</div>
<div class="flex-container">
<!-- cards start here -->
<a href="popUp/index.html">
<div class="item">
<img src="assets/popup.png">
<h3 class="name">Popup</h3>
</div>
</a>
<a href="balloon_popper/index.html">
<div class="item">
<img src="assets/popit.png">
<h3 class="name">Bubble Popper</h3>
</div>
</a>
<a href="drumkit/index-START.html">
<div class="item">
<img src="assets/drumkit.png">
<h3 class="name">Drum-Kit</h3>
</div>
</a>
<a href="timer/index.html">
<div class="item">
<img src="assets/timer.png">
<h3 class="name">Timer</h3>
</div>
</a>
<a href="Hamburger Navbar/index.html">
<div class="item">
<img src="assets/Navbar.png">
<h3 class="name">Navbar</h3>
</div>
</a>
<a href="Quote/index.html">
<div class="item">
<img src="assets/quote.png">
<h3 class="name">Random Quotes</h3>
</div>
</a>
<a href="Jokes/index.html">
<div class="item">
<img src="assets/jokes.png">
<h3 class="name">Random Jokes</h3>
</div>
</a>
<a href="visitor's counter/index.html">
<div class="item">
<img src="assets/viewer's counter.png">
<h3 class="name">Visitor's Counter</h3>
</div>
</a>
<a href="To-Do list/index.html">
<div class="item">
<img src="assets/todo.png">
<h3 class="name">To-Do list</h3>
</div>
</a>
<a href="Password Generator/index.html">
<div class="item">
<img src="assets/password-generator.png">
<h3 class="name">Password Generator</h3>
</div>
</a>
</div>
</body>
</html>