forked from harsh-100/daily-mern-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-one.html
More file actions
121 lines (108 loc) · 2.52 KB
/
test-one.html
File metadata and controls
121 lines (108 loc) · 2.52 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Your Webpage Title</title>
<style>
/* Reset some default styles */
body,
h1,
h2,
p,
ul,
li {
margin: 0;
padding: 0;
}
/* Global Styles */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 960px;
margin: 0 auto;
}
.logo h1 {
font-size: 24px;
}
ul {
list-style: none;
display: flex;
}
ul li {
margin-right: 20px;
}
ul li:last-child {
margin-right: 0;
}
ul li a {
color: #fff;
text-decoration: none;
transition: color 0.3s;
}
ul li a:hover {
color: #ff6600; /* Change to your desired hover color */
}
main {
max-width: 960px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<h1>Your Logo or Website Title</h1>
</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h2>Home</h2>
<p>Welcome to our website. This is the home section.</p>
</section>
<section id="about">
<h2>About</h2>
<p>Learn more about our company and team here.</p>
</section>
<section id="services">
<h2>Services</h2>
<p>We offer a wide range of services to our clients.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Get in touch with us. We'd love to hear from you!</p>
</section>
</main>
<footer>
<p>© 2023 Your Company Name. All rights reserved.</p>
</footer>
</body>
</html>