-
Notifications
You must be signed in to change notification settings - Fork 2
/
fourth.html
39 lines (33 loc) · 1.4 KB
/
fourth.html
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
<!DOCTYPE html>
<html>
<head>
<title>Simple Web Page</title>
</head>
<body style="font-family: Arial, sans-serif; background-color: #f0f0f0; margin: 0; padding: 0;">
<header style="background-color: #333; color: #fff; text-align: center; padding: 20px;">
<h1>Welcome to My Simple Web Page</h1>
</header>
<nav style="background-color: #444; text-align: center; padding: 10px;">
<ul style="list-style: none; padding: 0;">
<li style="display: inline; margin: 0 10px;">
<a href="#" style="text-decoration: none; color: #fff; font-weight: bold;">Home</a>
</li>
<li style="display: inline; margin: 0 10px;">
<a href="#" style="text-decoration: none; color: #fff; font-weight: bold;">About</a>
</li>
<li style="display: inline; margin: 0 10px;">
<a href="#" style="text-decoration: none; color: #fff; font-weight: bold;">Contact</a>
</li>
</ul>
</nav>
<main style="max-width: 800px; margin: 20px auto; padding: 20px; background-color: #fff;">
<section>
<h2 style="color: #333;">About Us</h2>
<p>This is a basic HTML and inline CSS webpage.</p>
</section>
</main>
<footer style="text-align: center; padding: 10px; background-color: #333; color: #fff;">
<p>© 2023 Your Name</p>
</footer>
</body>
</html>