Skip to content

Commit 7cdb312

Browse files
author
AP-BAPPI-WEBAPP\bappi.chandra
committed
Live all project
1 parent 8fb5c79 commit 7cdb312

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

index.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>JavaScript DOM Mini Projects 2025</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
margin: 20px;
11+
padding: 20px;
12+
text-align: left;
13+
}
14+
h1 {
15+
color: #333;
16+
}
17+
ul {
18+
list-style-type: none;
19+
padding: 0;
20+
}
21+
li {
22+
margin: 10px 0;
23+
}
24+
a {
25+
text-decoration: none;
26+
color: #007bff;
27+
font-size: 18px;
28+
}
29+
a:hover {
30+
text-decoration: underline;
31+
}
32+
</style>
33+
</head>
34+
<body>
35+
<h1>JavaScript DOM Mini Projects</h1>
36+
<ul>
37+
<li><a target="_blank" href="./01 Social media like facebook/index.html">Social Media Website</a></li>
38+
<li><a target="_blank" href="./02 Weather app/index.html">JavaScript Weather App</a></li>
39+
<li><a target="_blank" href="./03 Todo list app/index.html">Todo List</a></li>
40+
<li><a target="_blank" href="./04 Quiz app/index.html">Quiz App</a></li>
41+
<li><a target="_blank" href="./05 Random password generator/index.html">Random Password Generator</a></li>
42+
<li><a target="_blank" href="./06 Password hide and show/index.html">Password Hide and Show</a></li>
43+
<li><a target="_blank" href="./15 Notes app/index.html">Notes App</a></li>
44+
<li><a target="_blank" href="./08 Age calculator app/index.html">Age Calculator</a></li>
45+
<li><a target="_blank" href="./07 Calculator app/index.html">JavaScript Calculator App</a></li>
46+
<li><a target="_blank" href="./13 Quote generator/index.html">Quote Generator App</a></li>
47+
<li><a target="_blank" href="./09 QR code generator app/index.html">QR Code Generator</a></li>
48+
<li><a target="_blank" href="./11 Toast notification app/index.html">Notification Toast</a></li>
49+
<li><a target="_blank" href="./10 Music player/index.html">Music Player</a></li>
50+
<li><a target="_blank" href="./12 Stopwatch app/index.html">Stopwatch</a></li>
51+
<li><a target="_blank" href="./14 Popup/index.html">Popup</a></li>
52+
<li><a target="_blank" href="./16 Form validation/index.html">Form Validation</a></li>
53+
<li><a target="_blank" href="./17 Horizontal scroll image gallery/index.html">Horizontal Scrolling Slide Gallery</a></li>
54+
<li><a target="_blank" href="./18 Email subscription from/index.html">Email Subscription</a></li>
55+
</ul>
56+
<h2>More Coming Soon...</h2>
57+
</body>
58+
</html>

0 commit comments

Comments
 (0)