-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct2.html
45 lines (42 loc) · 1.46 KB
/
product2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="product-styles.css">
<title>Smartphone ZZZ - Mr.Stijket Official Store</title>
</head>
<body>
<header class="header">
<h1 class="logo">Mr.Stijket Official Store</h1>
<nav class="nav">
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact</a>
<a href="products.html">Products</a>
<a href="basket.html">Cart</a>
</nav>
</header>
<section class="product-page">
<div class="product-image">
<img src="product2.jpg" alt="Smartphone XYZ">
</div>
<div class="product-details">
<h2>Smartphone ZZZ</h2>
<p>Experience the power of the future in your hands with the Smartphone ZZZ. This cutting-edge device features a high-resolution display, powerful processor, and advanced camera system.</p>
<p>Key Features:</p>
<ul>
<li>6.5-inch Super AMOLED Display</li>
<li>Octa-core Snapdragon Processor</li>
<li>Triple Rear Camera Setup</li>
<li>Fast Charging Technology</li>
<li>Secure Facial Recognition</li>
</ul>
<p class="price">$199.99</p>
<a href="#" class="btn btn-primary buy-now-btn" data-product-id="2">Buy Now</a>
</div>
</section>
<!-- Other sections and footer here -->
</body>
</html>