-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (26 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Trendy Shop by Ishita</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<img src="banner.gif" alt="Shop Banner" class="banner" loop>
<h1>Welcome to Trendy Shop by Ishita</h1>
<input type="text" id="searchBox" placeholder="Search products...">
</header>
<section class="products-container" id="productsContainer">
<!-- Product Cards will be dynamically loaded here -->
</section>
<footer>
<p>About: This is an affiliate shopping website showcasing trendy products.</p>
<p>© 2024 by Ishita Gupta. All rights reserved.</p>
<p>Contact: Instagram <a href="https://instagram.com/Miniissue84" target="_blank">@Miniissue84</a></p>
</footer>
</body>
</html>