-
Notifications
You must be signed in to change notification settings - Fork 0
/
1725824909.568057.html
111 lines (111 loc) · 3.09 KB
/
1725824909.568057.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
<!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;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 50px 0;
background-color: #333;
color: white;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
section {
padding: 40px 0;
}
.product-info {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.product-info img {
max-width: 100%;
height: auto;
flex: 1;
margin-right: 20px;
}
.product-info div {
flex: 2;
}
.product-info h2 {
font-size: 2em;
margin-bottom: 20px;
}
.product-info p {
font-size: 1.2em;
line-height: 1.5;
}
.cta {
text-align: center;
margin: 40px 0;
}
.cta a {
background-color: #333;
color: white;
padding: 15px 30px;
text-decoration: none;
font-size: 1.2em;
border-radius: 5px;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #f1f1f1;
}
footer a {
color: #333;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Revolutionary Dry Shampoo for Men</h1>
<p>Stay fresh and confident, anytime, anywhere.</p>
</div>
</header>
<section>
<div class="container product-info">
<img src="dry-shampoo-men.jpg" alt="Dry Shampoo for Men">
<div>
<h2>Why Choose Our Dry Shampoo?</h2>
<p>Our dry shampoo for men is designed to keep your hair looking and feeling fresh between washes. It's quick, convenient, and perfect for the modern man on the go. Whether you're heading to the office, the gym, or out on a date, our dry shampoo ensures you always look your best.</p>
<ul>
<li>Instantly refreshes hair</li>
<li>Eliminates excess oil</li>
<li>Leaves no residue</li>
<li>Easy to use spray</li>
</ul>
</div>
</div>
</section>
<section class="cta">
<div class="container">
<a href="shop-now.html">Shop Now</a>
</div>
</section>
<footer>
<div class="container">
<p>Made with <a href="https://landing-page-generator.github.io" target="_blank">LPG</a></p>
</div>
</footer>
</body>
</html>