-
Notifications
You must be signed in to change notification settings - Fork 0
/
1725825097.04449.html
159 lines (156 loc) · 4.22 KB
/
1725825097.04449.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dry Shampoo for Men</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77b300 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
float: left;
display: inline;
padding: 0 20px 0 20px;
}
header #branding {
float: left;
}
header #branding h1 {
margin: 0;
}
header nav {
float: right;
margin-top: 10px;
}
#showcase {
min-height: 400px;
background: url('https://via.placeholder.com/1200x400') no-repeat 0 -400px;
text-align: center;
color: #fff;
}
#showcase h1 {
margin-top: 100px;
font-size: 55px;
margin-bottom: 10px;
}
#showcase p {
font-size: 20px;
}
.button {
display: inline-block;
color: #fff;
background: #77b300;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s;
}
.button:hover {
background: #5a8e00;
}
#main {
padding: 20px;
background: #fff;
}
#main h2 {
text-align: center;
margin-bottom: 20px;
}
#main .features {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
}
#main .feature {
flex: 1;
margin: 10px;
padding: 20px;
background: #e4e4e4;
text-align: center;
border-radius: 5px;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 20px;
margin-top: 20px;
}
footer a {
color: #77b300;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Dry Shampoo for Men</h1>
</div>
<nav>
<ul>
<li><a href="#showcase">Home</a></li>
<li><a href="#main">Features</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>Stay Fresh, Stay Confident</h1>
<p>Introducing the ultimate dry shampoo for men. Quick, easy, and effective.</p>
<a href="#main" class="button">Learn More</a>
</div>
</section>
<section id="main">
<div class="container">
<h2>Features</h2>
<div class="features">
<div class="feature">
<h3>Quick & Easy</h3>
<p>Apply in seconds and get on with your day.</p>
</div>
<div class="feature">
<h3>Long-Lasting Freshness</h3>
<p>Stay fresh and confident all day long.</p>
</div>
<div class="feature">
<h3>Natural Ingredients</h3>
<p>Made with natural ingredients that are good for your hair.</p>
</div>
</div>
</div>
</section>
<footer>
<p>Made with <a href="https://landing-page-generator.github.io">LPG</a></p>
</footer>
</body>
</html>