-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (86 loc) · 3.25 KB
/
index.html
File metadata and controls
94 lines (86 loc) · 3.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Myntra Functional Clone</title>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<header>
<div class="logo_container">
<a href="#"><img class="myntra_home" src="images/myntra_logo.webp" alt="Myntra Home"></a>
</div>
<nav class="nav_bar">
<a href="#">Men</a>
<a href="#">Women</a>
<a href="#">Kids</a>
<a href="#">Home & Living</a>
<a href="#">Beauty</a>
<a href="#">Studio <sup>New</sup></a>
</nav>
<div class="search_bar">
<span class="material-symbols-outlined search_icon">search</span>
<input class="search_input" placeholder="Search for products, brands and more">
</div>
<div class="action_bar">
<div class="action_container">
<span class="material-symbols-outlined action_icon">person</span>
<span class="action_name">Profile</span>
</div>
<div class="action_container">
<span class="material-symbols-outlined action_icon">favorite</span>
<span class="action_name">Wishlist</span>
</div>
<a class="action_container" href="pages/bag.html">
<span class="material-symbols-outlined action_icon">shopping_bag</span>
<span class="action_name">Bag</span>
<span class="bag-item-count">0</span>
</a>
</div>
</header>
<main>
<div class="item-container">
</div>
</main>
<footer>
<div class="footer_container">
<div class="footer_column">
<h3>ONLINE SHOPPING</h3>
<a href="#">Men</a>
<a href="#">Women</a>
<a href="#">Kids</a>
<a href="#">Home & Living</a>
<a href="#">Beauty</a>
<a href="#">Gift Card</a>
<a href="#">Myntra Insider</a>
</div>
<div class="footer_column">
<h3>ONLINE SHOPPING</h3>
<a href="#">Men</a>
<a href="#">Women</a>
<a href="#">Kids</a>
<a href="#">Home & Living</a>
<a href="#">Beauty</a>
<a href="#">Gift Card</a>
<a href="#">Myntra Insider</a>
</div>
<div class="footer_column">
<h3>ONLINE SHOPPING</h3>
<a href="#">Men</a>
<a href="#">Women</a>
<a href="#">Kids</a>
<a href="#">Home & Living</a>
<a href="#">Beauty</a>
<a href="#">Gift Card</a>
<a href="#">Myntra Insider</a>
</div>
</div>
<hr>
<div class="copyright">
© 2023 www.myntra.com. All rights reserved.
</div>
</footer>
<script src="items/items.js"></script>
<script src="js file/index.js"></script>
</body>
</html>