-
Notifications
You must be signed in to change notification settings - Fork 0
/
productLanding.html
112 lines (97 loc) · 2.34 KB
/
productLanding.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<style>body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
nav {
background-color: #333;
color: #fff;
text-align: center;
position: absolute;
width: 100%;
}
nav ul {
list-style: none;
padding: 0;
float: left;
}
nav ul li {
display: inline;
margin: 0 20px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
font-size: 18px;
}
.container {
width: 80%;
margin: 0 auto;
text-align: center;
padding-top: 50px;
}
.product {
background-color: #fff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 20px;
}
h1 {
font-size: 28px;
margin-bottom: 10px;
}
p {
font-size: 16px;
margin-bottom: 15px;
}
.cta-button {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
text-decoration: none;
color: #fff;
background-color: #007bff;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #0056b3;
}
</style>
<body>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="container">
<div class="product">
<img src="headphones.jpeg" alt="Product Image">
<h1>Wireless Headphones</h1>
<p>Introducing our Premium Wireless Headphones. Experience superior sound quality and comfort with our latest Bluetooth headphones. Enjoy crystal-clear audio and a sleek, ergonomic design that provides all-day comfort. Whether you're on-the-go or relaxing at home,
our headphones deliver an immersive listening experience.</p>
<p>Price: $359.9</p>
<a href="#" class="cta-button">Buy Now</a>
</div>
</div>
</body>
</html>