-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab22.html
More file actions
92 lines (87 loc) · 2.16 KB
/
Copy pathlab22.html
File metadata and controls
92 lines (87 loc) · 2.16 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sample HTML Template</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
width: 80%;
margin: 0 auto;
}
header {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
width: 100%;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
nav ul li {
display: inline;
margin-right: 10px;
}
section {
padding: 20px;
margin: 20px;
background-color: white;
border-radius: 5px;
width: 100%;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>My Website</h1>
<nav>
<ul>
<li>Home</li>
<li>About</li>
<li>Services</li>
<li>Contact</li>
</ul>
</nav>
</header>
<section id="home">
<h2>Welcome to My Website</h2>
<p>This is a sample HTML template for a website.</p >
</section>
<section id="about">
<h2>About Us</h2>
<p>Learn more about our company and team.</p >
</section>
<section id="services">
<h2>Our Services</h2>
<ul>
<li>Service 1</li>
<li>Service 2</li>
<li>Service 3</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Contact us at [email protected]</p >
</section>
<footer>
<p>© 2023 My Website. All rights reserved.</p >
</footer>
</body>
</html>
</html>