-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 3.26 KB
/
index.html
File metadata and controls
88 lines (79 loc) · 3.26 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GadgetXone - Premium Electronics</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css"> <!-- Linking external CSS file for a clean structure -->
</head>
<body>
<!-- Header Section -->
<header>
<img src="images/Gadget.jpeg" alt="Logo">
<h1>GADGETXONE.IN</h1>
</header>
<div style="height: 2px; background-color: #ffffff; width: 100%;"></div>
<!-- Main Content Section -->
<main>
<p>Tap on the icons below for more updates</p>
<div class="social-links">
<a href="https://www.instagram.com/gadgetxone.in" target="_blank">
<img src="images/insta.png" alt="Instagram">
<a href="https://chat.whatsapp.com/JAp6wBrNAb85F61vAfaAOK" target="_blank">
<img src="images/whatsapp.png" alt="WhatsApp">
</a>
</div>
<div style="height: 2px; background-color: #ffffff; width: 100%;"></div>
<div class="product-gallery">
<div class="product-item">
<a href="product-page-1.html">
<img src="images/4523861.jpg" alt="Analog Watches">
<p>Analog Watches</p>
</a>
<button class="buy-now" onclick="openCustomerForm()">Buy Now</button>
</div>
<div class="product-item">
<a href="product-page-2.html">
<img src="images/airpods-2_2.jpg" alt="Earpods">
<p>Earpods</p>
</a>
<button class="buy-now" onclick="openCustomerForm()">Buy Now</button>
</div>
<div class="product-item">
<a href="product-page-3.html">
<img src="images/astraunuat.jpg" alt="Astronaut">
<p>Astronaut</p>
</a>
<button class="buy-now" onclick="openCustomerForm()">Buy Now</button>
</div>
<div class="product-item">
<a href="product-page-4.html">
<img src="images/glass moon.jpeg" alt="Cool Showpiece">
<p>Glass ball moon light</p>
</a>
<button class="buy-now" onclick="openCustomerForm()">Buy Now</button>
</div>
<div class="product-item">
<a href="product-page-5.html">
<img src="images/headphone.jpeg" alt="Headphones">
<p>Headphones</p>
</a>
<button class="buy-now" onclick="openCustomerForm()">Buy Now</button>
</div>
</div>
</main>
<!-- Footer Section -->
<footer>
<p>Premium Gadgets and Accessories</p>
<p>© GadgetXone.in </p>
</footer>
<!-- Buy Now Button Script -->
<script>
function openCustomerForm() {
window.location.href = "customer-form.html"; // Redirecting to customer form
}
</script>)
</body>
</html>