-
Notifications
You must be signed in to change notification settings - Fork 0
/
landingpage.html
64 lines (59 loc) · 2.81 KB
/
landingpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="body.css">
</head>
<body>
<header>
<div class="logo">
<h1>QUIRKYBOX</h1>
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section class="main-content" id="home">
<h2>SPEAKERS AND SOUNDS</h2>
<p>QUIRKYBOX is an audio device brand providing an epic music and DJ-like experience at your house party. We offer a wide range of speakers, audio devices, and headsets. Join us and become part of the QUIRKYBOX experience.</p>
<button>Learn More</button>
<div class="product-boxes" id="products">
<!-- Product 1 -->
<div class="product-box">
<img src="https://via.placeholder.com/200" alt="SuperBass Speaker">
<h3>SuperBass Speaker</h3>
<p>Experience deep bass and clear sound with the SuperBass Speaker.</p>
<button>Buy Now</button>
</div>
<!-- Product 2 -->
<div class="product-box">
<img src="https://via.placeholder.com/200" alt="Wireless Headset">
<h3>Wireless Headset</h3>
<p>Wireless comfort with high-quality sound for your music and calls.</p>
<button>Buy Now</button>
</div>
<!-- Product 3 -->
<div class="product-box">
<img src="https://via.placeholder.com/200" alt="PartyBox Speaker">
<h3>PartyBox Speaker</h3>
<p>The ultimate speaker for house parties with LED lights and punchy audio.</p>
<button>Buy Now</button>
</div>
</div>
</section>
<section class="about-us" id="about">
<h2>About Us</h2>
<p>Hello! I'm a student at SGSITS Indore, currently pursuing a Bachelor's degree in Information Technology. My passion for technology and sound has driven me to create innovative sound systems that aim to bring the world closer through music. At QUIRKYBOX, we're focused on building speakers and audio devices that enhance your listening experience and bring people together. We aim to create high-quality soundboxes that truly make the world a better place—one beat at a time!</p>
</section>
<footer id="contact">
<p>Contact us: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>