-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 880 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 880 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles/style1.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Classic Webpage</title>
</head>
<body>
<header>
<h1>Classic Webpage</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h2>Welcome to Our Website</h2>
<p>This is a classic style webpage with a clean and simple design.</p>
<img src="https://example.com/image.jpg" alt="Example Image">
</main>
<footer>
<p>© 2023 Classic Webpage. All rights reserved.</p>
</footer>
</body>
</html>