-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (59 loc) · 2.63 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Poppins&display=swap" rel="stylesheet">
<link rel="icon" href="images/icons/cart_icon.gif">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/home.css">
<link rel="stylesheet" href="styles/other_brand.css">
<link rel="stylesheet" href="styles/cart.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/mediaquery.css">
<title>Shopify🛒</title>
</head>
<body>
<header class="header">
<div class="hdr-ctr">
<span class="name">Shopify🛒</span>
<div class="search">
<input type="search" class="search-items" placeholder="Search it......" onkeyup="filter()">
</div>
<nav class="head-right-ctr">
<a onclick="process()" class="more">Trending
<img src="images/icons/fire_flame.gif" alt="🔥">
</a>
<a onclick="show_other_brands()" class="contact"> Brands📈</a>
<a onclick="show_cart()" class="cart">Cart🛒
<div class="cart-cnt">0</div>
</a>
</nav>
</div>
</header>
<div class="main"></div>
<div class="brands-ctr"></div>
<div class="cart-ctr"></div>
<footer class="footer">
<div class="details">
Developed by Santhosh Pandi🦊<br>
<div class="links">
<a href="https://www.linkedin.com/in/santhosh-pandi-3aa7b3236/?lipi=urn%3Ali%3Apage%3Ad_flagship3_feed%3BFPOKE7yQRNq%2FTDcVe8Zh2g%3D%3D"><img src="images/icons/linkedin-icon.svg" alt="linkedin"></a>
<a href="https://github.com/santhoshpandi/"><img src="images/icons/github-icon.svg" alt="github"></a>
<a href="https://santhoshpandi.github.io/RockPaperScissor/"><img src="images/icons/game-icon.png" alt="game"></a>
</div>
<div class="copyright">
© 2024 SanthoshPandi🦋
</div>
</div>
</footer>
<a class="go-to-top-btn" href="#"><img src="images/icons/up-arrow.png" alt=""></a>
<script src="scripts/home.js"></script>
<script src="scripts/cart.js"></script>
<script src="https://cdn.jsdelivr.net/gh/noumanqamar450/alertbox@main/version/1.0.2/alertbox.min.js"></script>
<script src="scripts/order.js"></script>
<script src="scripts/other_brand.js"></script>
</body>
</html>