-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
48 lines (42 loc) · 1.75 KB
/
Copy pathlanding.html
File metadata and controls
48 lines (42 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>XPhone 15 - Landing Page</title>
</head>
<body style="font-family: Arial, sans-serif; margin: 0; padding: 0;">
<!-- Header -->
<div style="background-color: #000; color: #fff; padding: 20px; text-align: center;">
<h1>XPhone 15</h1>
<p>The Future is Now</p>
</div>
<!-- Hero Section -->
<div style="text-align: center; padding: 40px;">
<img src="https://via.placeholder.com/400x300" alt="XPhone 15" style="max-width: 100%;">
<h2 style="margin-top: 20px;">Experience the Next Generation Smartphone</h2>
<p style="font-size: 18px;">Fast. Smart. Sleek.</p>
<a href="#buy" style="padding: 10px 20px; background-color: #000; color: #fff; text-decoration: none; border-radius: 5px;">Buy Now</a>
</div>
<!-- Features Section -->
<div style="background-color: #f4f4f4; padding: 40px;">
<h2 style="text-align: center;">Key Features</h2>
<ul style="max-width: 600px; margin: auto; font-size: 18px;">
<li>🚀 A17 Bionic Chip</li>
<li>📸 108 MP Triple Camera</li>
<li>🔋 5000mAh Battery</li>
<li>🌐 5G Connectivity</li>
<li>🌈 6.7" AMOLED Display</li>
</ul>
</div>
<!-- Pricing Section -->
<div id="buy" style="padding: 40px; text-align: center;">
<h2>Only ₹79,999</h2>
<p>Free delivery. 1-Year Warranty. EMI Options Available.</p>
<a href="#" style="padding: 10px 20px; background-color: #28a745; color: #fff; text-decoration: none; border-radius: 5px;">Order Now</a>
</div>
<!-- Footer -->
<div style="background-color: #000; color: #fff; text-align: center; padding: 20px;">
<p>© 2025 XPhone Inc. All rights reserved.</p>
</div>
</body>
</html>