-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (66 loc) · 2.1 KB
/
Copy pathindex.html
File metadata and controls
76 lines (66 loc) · 2.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>4 in One Project | Dibyajyoti Senapati</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- ===== HERO SECTION ===== -->
<header class="hero">
<h1>Dibyajyoti Senapati</h1>
<p class="subtitle">Frontend JavaScript Mini Projects</p>
</header>
<!-- ===== PROJECT DESCRIPTION ===== -->
<section class="description">
<h2>🚀 About This Project</h2>
<p>
This is a <strong>4 in One JavaScript Mini Project</strong> collection built using
<strong>HTML, CSS, and JavaScript</strong>.
Each project focuses on improving JavaScript logic, DOM manipulation,
event handling, and UI responsiveness.
</p>
</section>
<!-- ===== PROJECT CARDS ===== -->
<section class="container">
<a href="./project one/bgColorChange.html" class="card">
<h3>🎨 Background Color Changer</h3>
<p>
Click on color boxes to dynamically change the background color
using JavaScript events.
</p>
<button>View Project</button>
</a>
<a href="./project two/bmi.html" class="card">
<h3>⚖️ BMI Calculator</h3>
<p>
Calculate Body Mass Index by entering height and weight with
validation and instant results.
</p>
<button>View Project</button>
</a>
<a href="./project three/clock.html" class="card">
<h3>⏰ Local Time Clock</h3>
<p>
Displays real-time local time using JavaScript Date object
with live updates.
</p>
<button>View Project</button>
</a>
<a href="./project four/guess.html" class="card">
<h3>🎯 Guess the Number Game</h3>
<p>
Interactive number guessing game with limited attempts,
hints, and restart option.
</p>
<button>View Project</button>
</a>
</section>
<!-- ===== FOOTER ===== -->
<footer>
<p>© 2024 Dibyajyoti Senapati | Built with ❤️ using JavaScript</p>
</footer>
<script src="script.js"></script>
</body>
</html>