-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (87 loc) · 3.87 KB
/
Copy pathindex.html
File metadata and controls
100 lines (87 loc) · 3.87 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
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>E-Commerce Website</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playwrite+IN:wght@100..400&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Lora:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1 class="main-heading">
Buy N' Go
</h1>
<button class="top-btns" id="login_btn">login</button>
<button class="top-btns" onclick="window.location.href='signup.html';">sign in</button>
</header>
<nav>
<a href="#home" class="cta-button"aria-label="Go to the home page">Home</a>
<a href="#products" class="cta-button" aria-label="Browse the shop section">Shop</a>
<a href="#about-us" class="cta-button" aria-label="Learn more about us">About</a>
<a href="#contact-us" aria-label="Contact us">Contact</a>
<a href="cart.html" id="cart-icon" aria-label="View shopping cart">
<i class="fas fa-shopping-cart"></i> Cart
</a>
<form id="search-form">
<input type="text" id="search-input" placeholder="Search products..." />
<button type="button" id="search-button" aria-label="Search for products">Search</button>
</form>
</nav>
<div class="hero">
<h1 class="main-heading">
Style That Speaks Louder Than Words!
</h1>
<p class="subheading">Elevate your wardrobe with the latest trends.</p>
<a href="#products" class="cta-button1" aria-label="Start shopping now">Shop Now!</a>
</div>
<section id="products" class="products">
<h2>Our Products</h2>
<div class="product">
<img src="https://via.placeholder.com/250" alt="Product 1" />
<h3>Classic T-Shirt</h3>
<p>$20.00</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/250" alt="Product 2" />
<h3>Modern Fit T-Shirt</h3>
<p>$25.00</p>
<button>Add to Cart</button>
</div>
</section>
<section id="contact-us">
</section>
</section>
<section id="about-us">
<div class="about-container">
<h2>About Us</h2>
<p>
Welcome to our T-Shirt store! We offer high-quality, stylish apparel that blends comfort and fashion effortlessly. Our mission is to provide you with the perfect T-Shirts that you'll love to wear every day.
</p>
<p>
Every piece is crafted with care and designed to make a statement. Thank you for choosing us as your go-to for unique and trendy outfits!
</p>
<a href="https://youtu.be/dQw4w9WgXcQ?si=CyaE7na-BVcAGWtw" style="color: aliceblue; font-size: large;">!!secret offer!!</a>
<h2>Contact Us</h2>
<p>phone no: 11234567</p>
<p> email : sredfhbnak@gmail.com</p>
<p>insta fb twitter..</p>
</div>
</section>
<footer >
<p>© 2025 E-Commerce Store. All Rights Reserved.</p>
</footer>
<!-- <div id="cart">
<h2>⁁ Shopping Cart</h2>
<ul></ul>
<p>Total: $0.00</p>
</div> -->
<script src="script.js"></script>
</body>
</html>