-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomepage.html
More file actions
41 lines (41 loc) · 1.49 KB
/
Copy pathhomepage.html
File metadata and controls
41 lines (41 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sample Homepage</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f4f4f4; }
header { background: #333; color: #fff; padding: 20px 0; text-align: center; }
nav { background: #444; padding: 10px 0; text-align: center; }
nav a { color: #fff; margin: 0 15px; text-decoration: none; }
main { padding: 40px 20px; max-width: 900px; margin: auto; background: #fff; }
footer { background: #333; color: #fff; text-align: center; padding: 15px 0; position: fixed; width: 100%; bottom: 0; }
</style>
</head>
<body>
<header>
<h1>Welcome to My Homepage</h1>
<p>Your one-stop destination for all updates</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
</nav>
<main>
<h2>About This Site</h2>
<p>This is a sample homepage created to demonstrate basic HTML structure and styling. You can customize this template to suit your needs.</p>
<h3>Latest News</h3>
<ul>
<li>Version 1.0 released</li>
<li>New features coming soon</li>
<li>Contact us for more information</li>
</ul>
</main>
<footer>
© 2024 Sample Homepage. All rights reserved.
</footer>
</body>
</html>