-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.html
137 lines (123 loc) · 5.63 KB
/
content.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<title>Online Shopping for Women, Men, Kids Fashion & Lifestyle - Myntra</title>
<link rel="icon" href="images/favicon_icon.ico" type="image/x-icon">
<link rel="stylesheet" href="CSS/style.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 Section -->
<header>
<div class="logo_container">
<a href="index.html"><img class="myntra_home" src="images/myntra_logo.webp" alt=""></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="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="items-container"></div>
</main>
<footer class="footer">
<div class="footer_container">
<div class="desktop-shopLinks">
<p class="desktop-gInfoTitle"><a href="#">ONLINE SHOPPING</a></p>
<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>
<p class="desktop-gInfoTitle">USEFUL LINKS</p>
<a href="#">Blog</a>
<a href="#">Careers</a>
<a href="#">Site Map</a>
<a href="#">Corporation Information</a>
<a href="#">Whitehat</a>
<a href="#">Cleartrip</a>
</div>
<div class="desktop-customerPolicies">
<p class="desktop-gInfoTitle">CUSTOMER POLICIES</p>
<a href="#">Contact Us</a>
<a href="#">FAQ</a>
<a href="#">T&C</a>
<a href="#">Terms of Use</a>
<a href="#">Track Orders</a>
<a href="#">Shipping</a>
<a href="#">Cancellation</a>
<a href="#">Returns</a>
<a href="#">Grievance Officer</a>
</div>
<div class="desktop-appExperience">
<p class="desktop-gInfoTitle">EXPERIENCE MYNTRA APP ON MOBILE</p>
<div class="down_link_container">
<a href="#"><img class="androidDownlink" src="images/footer/play_store.png"></a>
<a href="#"><img class="iosDownlink" src="images/footer/app_store.png"></a>
</div>
<div class="keep_in_touch">KEEP IN TOUCH</div>
<a href="#" class="facebook_icon"><img src="images/footer/facebook.png"></a>
<a href="#" class="twitter_icon"><img src="images/footer/twitter.png"></a>
<a href="#" class="youtube_icon"><img src="images/footer/youtube.png"></a>
<a href="#" class="instagram_icon"><img src="images/footer/instagram.png"></a>
</div>
<div class="desktop-promises">
<div class="desktop-section">
<div class="desktop-original">
<img src="images/footer/original.png" width="48px" height="40px">
</div>
<div class="data">
<strong>100% ORIGINAL</strong>
guarantee for all products at myntra.com
</div>
</div>
<div class="desktop-section">
<div class="desktop-return">
<img src="images/footer/return.png" width="48px" height="49px">
</div>
<div class="data">
<strong>Return within 14days </strong>
of receiving your order
</div>
</div>
</div>
<div class="desktop-fInfoSection">
<div class="desktop-contact">In case of any concern,
<a href="#"> Contact Us </a>
</div>
<div class="desktop-copywrite">© 2024 www.myntra.com. All rights reserved.</div>
<div class="desktop-flipkartCompany">
<a href="#"> A Flipkart company </a>
</div>
</div>
</div>
</footer>
<script src="scripts/data.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>