-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML.html
More file actions
40 lines (39 loc) · 1.03 KB
/
Copy pathHTML.html
File metadata and controls
40 lines (39 loc) · 1.03 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
<!-- index.html -->
<!DOCTYPE html>
<html lang="English">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Example Web Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Welcome to Example Web Page</h1>
<p>This is a sample web page.</p>
</section>
<section id="about">
<h2>About Us</h2>
<p>We are a team of developers.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Get in touch with us.</p>
</section>
</main>
<footer>
<p>© 2024 Example Web Page</p>
</footer>
<script src="script.js"></script>
</body>
</html>