forked from jimmy-byte/Hacktoberfest2023-codeshell
-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.html
32 lines (29 loc) · 797 Bytes
/
header.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Header</title>
<style>
/* CSS styles for the header */
header {
background-color: #4CAF50; /* Green background color */
color: white; /* White text color */
text-align: center; /* Center-align the text */
padding: 10px; /* Add some padding around the content */
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
<nav>
<a href="#">Home</a> |
<a href="#">About</a> |
<a href="#">Services</a> |
<a href="#">Contact</a>
</nav>
</header>
<!-- Rest of your HTML content goes here -->
</body>
</html>