-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails11.html
184 lines (162 loc) · 5.42 KB
/
details11.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laptop Details</title>
<link rel="stylesheet" href="styles.css">
<style>
html{
font-size:62.5%;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #8e44ad, #3498db);
color: #34495e;
}
.container {
max-width: 120rem;
margin: 4rem auto;
padding: 2rem;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(245, 245, 245, 0.8));
border-radius: 2rem;
backdrop-filter: blur(12px);
border-image-source: linear-gradient(135deg, #b2fefa, #f0ffff);
border-image-slice: 1;
text-align: center;
animation: glowing-border 3s infinite alternate;
border-radius: 2rem;
}
.laptop {
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
.images {
flex: 1;
min-width: 30rem;
}
.images img {
width: 100%;
border-radius: .8rem;
margin-bottom: 1rem;
}
.details {
flex: 2;
text-align: left;
}
.details h1 {
margin: 0 0 1rem;
color: #2c3e50;
}
.details p {
line-height: 1.6;
margin: 1rem 0;
color: #2c3e50;
}
.price {
font-size: 1.5rem;
color: #e74c3c;
font-weight: bold;
}
.cta-buttons {
margin-top: 2rem;
}
.cta-buttons a {
text-decoration: none;
margin-right: 1rem;
padding: 1rem 2rem;
border-radius: .5rem;
color: #fff;
background-color: #2c7a7b;
transition: background-color 0.3s;
}
.cta-buttons a:hover {
background-color: #225f61;
}
.more-details {
margin-top: 2rem;
}
.more-details h2 {
margin-bottom: 1rem;
color: #2c3e50;
}
.more-details ul {
list-style: none;
padding: 0;
}
.more-details ul li {
margin: .5rem 0;
color: #34495e;
}
.contact-details {
margin-top: 2rem;
font-size: 1rem;
line-height: 1.6;
}
.contact-details h2 {
margin-bottom: 1rem;
color: #2c3e50;
}
.contact-details a {
color: #e74c3c;
text-decoration: none;
}
.contact-details a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="laptop">
<div class="images">
<img src="https://i.pcmag.com/imagery/reviews/06Id58TJW8pkzAkqmSi7hjU-1.fit_lim.size_919x518.v1729701979.jpg"
alt="Laptop Front View">
<img src="https://img.freepik.com/premium-photo/macbook-pro-is-pink-surface-with-orange-background_889227-6190.jpg"
alt="Laptop Side View">
<img src="https://cdn.vectorstock.com/i/500p/21/75/gray-laptop-front-view-on-colorful-back-vector-36482175.jpg"
alt="Laptop Back View">
</div>
<div class="details">
<h1>Dell Inspiron 15 3000</h1>
<p><strong>Specifications:</strong></p>
<ul>
<li>Processor: Intel Core i5-1135G7</li>
<li>RAM: 8GB DDR4</li>
<li>Storage: 512GB SSD</li>
<li>Display: 15.6-inch Full HD</li>
<li>Graphics: Intel Iris Xe Graphics</li>
<li>Operating System: Windows 11 Home</li>
<li>Battery Life: Up to 6 hours</li>
<li>Weight: 1.8 kg</li>
<li>Ports: USB 3.2, HDMI, SD card reader</li>
</ul>
<p class="price">Price: ₹55,999</p>
<div class="cta-buttons">
<a href="../laptop buy/buy1.html">Buy Now</a>
</div>
<div class="more-details">
<h2>Additional Features:</h2>
<ul>
<li>Backlit Keyboard for ease of use in low-light conditions</li>
<li>Anti-glare display for better visibility</li>
<li>Integrated webcam with noise reduction</li>
<li>Pre-installed Microsoft Office Home & Student 2021</li>
</ul>
</div>
<div class="contact-details">
<h2>Contact Details:</h2>
<p>Phone: +91-9876543210</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Google Form: <a
href="https://docs.google.com/forms/d/e/1FAIpQLSd-OJIcGJyMmv0amm4NYfLJwWwLVxSrkTE1LzF2uUi3TRd5Xw/viewform?usp=dialog"
target="_blank">Submit your query</a></p>
</div>
</div>
</div>
</div>
</body>
</html>