-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (45 loc) · 1.68 KB
/
Copy pathindex.html
File metadata and controls
52 lines (45 loc) · 1.68 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>JavaScript Mini Projects</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<div class="logo">JS</div>
<h1>JavaScript Mini Projects</h1>
<p class="lead">A playful index to open each small JavaScript project. Click any card to open it.</p>
</header>
<main class="grid">
<a class="card" href="01%20Color%20Changer/index.html" target="_blank">
<h2>01 — Color Changer</h2>
<p>Change the page background color with a button.</p>
</a>
<a class="card" href="02%20BMI%20Calculator/index.html" target="_blank">
<h2>02 — BMI Calculator</h2>
<p>Calculate BMI from weight and height inputs.</p>
</a>
<a class="card" href="03%20Digital%20Clock/index.html" target="_blank">
<h2>03 — Digital Clock</h2>
<p>A realtime digital clock using JavaScript timers.</p>
</a>
<a class="card" href="04%20Guess%20The%20Number/index.html" target="_blank">
<h2>04 — Guess The Number</h2>
<p>Guess a random number with feedback.</p>
</a>
<a class="card" href="05%20Background%20Color%20Flicker/index.html" target="_blank">
<h2>05 — Background Color Flicker</h2>
<p>Rapidly change background colors for fun.</p>
</a>
<a class="card" href="06%20Keyboard%20Check/index.html" target="_blank">
<h2>06 — Keyboard Check</h2>
<p>See which key you pressed reflected on screen.</p>
</a>
</main>
<footer class="site-footer">
<p>Made for learning • Open a card to try a project</p>
</footer>
</body>
</html>