-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.07 KB
/
index.html
File metadata and controls
35 lines (34 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Color Flipper || Simple</title>
<!-- styles -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Modified by: Sahil Sharma - November 06, 2025 -->
<!-- Changes: Added developer credit and modification date -->
<nav>
<div class="nav-center">
<h4>color flipper</h4>
<ul class="nav-links">
<li><a href="index.html">simple</a></li>
<li><a href="hex.html">hex</a></li>
</ul>
</div>
</nav>
<main>
<div class="container">
<!-- Sahil Sharma: Updated background color display section -->
<h2>background color : <span class="color">#f1f5f8</span></h2>
<button class="btn btn-hero" id="btn">click me</button>
<!-- Modified by Sahil Sharma on 06/11/2025 -->
</div>
</main>
<!-- javascript -->
<script src="app.js"></script>
<!-- End of modifications by Sahil Sharma -->
</body>
</html>