-
Notifications
You must be signed in to change notification settings - Fork 0
/
product-page-3.html
37 lines (30 loc) · 1.05 KB
/
product-page-3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Earpods - GadgetXone</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Astronaut</h1>
</header>
<main>
<div class="product-description">
<img src="images/astraunuat.jpg" alt="Astronaut">
<p>Elegant, stylish, and premium quality Earpods that will complement your outfit. Perfect for formal and casual occasions.</p>
<button class="buy-now" onclick="openCustomerForm()">Buy Now</button>
</div>
</main>
<footer>
<p>© 2024 GadgetXone.in</p>
</footer>
<script>
function openCustomerForm() {
window.location.href = "customer-form.html"; // Redirecting to customer form
}
</script>)
</body>
</html>