-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 897 Bytes
/
index.html
File metadata and controls
37 lines (33 loc) · 897 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Modern Web Fundamentals</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Modern Web Fundamentals 🌐</h1>
<p>Learn how the modern web works!</p>
</header>
<main>
<section>
<h2>About the Web</h2>
<p>
The web has evolved from static pages to full-fledged applications
powered by JavaScript and APIs.
</p>
</section>
<section>
<h2>Try It Yourself</h2>
<button id="btn">Show a Fun Web Fact</button>
<p id="fact"></p>
</section>
</main>
<footer>
<p>© 2025 | Built by Anshul's Web Bootcamp 🚀</p>
</footer>
<script src="script.js"></script>
</body>
</html>