-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwomen.html
156 lines (143 loc) · 4.88 KB
/
women.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.png" type="image/x-icon">
<title>Women</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="./styles/women.css">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css"
/>
<link rel="stylesheet" href="./Import Export/navbar.css">
<link rel="stylesheet" href="./styles/navbar2.css">
</head>
<body>
<div id="navbar"></div>
<input type="checkbox" id="menu_bar">
<label for="menu_bar" class="checkbtn"><i class="fa-solid fa-bars"></i></label>
<div id="nav2"></div>
<div id="saleposter">
<button><a href="women_sale.html">Women</a></button>
<p>SALE: UP TO 80% OFF FINAL CLEARANCE! NEW LINES ADDED</p>
<button><a href="gaurav/product_page.html">Men</a></button>
</div>
<div id="salep" >
<button>SALE</button>
<h1>SALE: UP TO 80% OFF FINAL CLEARANCE! NEW LINES ADDED</h1>
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="./images/10001.jpg" alt="">
<p>THE BEST (LOWEST) SALE DISCOUNTS</p>
</div>
<div class="swiper-slide">
<img src="./images/10002.jpg" alt="">
<p>LOWEST PRICE DRESSES</p>
</div>
<div class="swiper-slide">
<img src="./images/10003.jpg" alt="">
<p>THE 50%-OFF EDIT</p>
</div>
<div class="swiper-slide">
<img src="./images/10004.jpg" alt="">
<p>SHORTS & TROUSERS</p>
</div>
<div class="swiper-slide">
<img src="./images/10005.jpg" alt="">
<p>TOPS</p>
</div>
<div class="swiper-slide">
<img src="./images/10006.jpg" alt="">
<p>LOWEST PRICE ACCESSORIES</p>
</div>
<div class="swiper-slide">
<img src="./images/10007.jpg" alt="">
<p>FOOTWEAR</p>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
<button id="salebut"><a href="women_sale.html">VIEW ALL</a></button>
<p>Limited timme only. Selected styles marked down as shown.</p>
</div>
<div id="sweetescape">
<div id="d1"><h1>Sweet escape</h1></div>
<div id="d2"><h3>SHOP ASOS DESIGN</h3></div>
</div>
<div id="cat">
<div>
<img src="./images/10009.jpg" alt="">
<h3>SWIM STUFF</h3>
<p>Dive in</p>
</div>
<div>
<img src="./images/10010.jpg" alt="">
<h3>AU NATURE</h3>
<p>Down to Earth (tones)</p>
</div>
<div>
<img src="./images/10011.jpg" alt="">
<h3>SUMMER ACCESSORIES</h3>
<p>Plus-ones for pool</p>
</div>
<div>
<img src="./images/10012.jpg" alt="">
<h3>FACE + BODY ICONS</h3>
<p>POV: Your summer makeup bag</p>
</div>
</div>
<div id="poke">
<div>
<img src="./images/10013.jpg" alt="">
<h1>I CHOOSE YOU!</h1>
<p>Peep the new collection</p>
<button>SHOP NOW</button>
</div>
<div>
<img src="./images/10014.jpg" alt="">
<h1>I CHOOSE YOU!</h1>
<p>Peep the new collection</p>
<button>SHOP NOW</button>
</div>
</div>
<div id="brnd">
<h4>TRENDING BRANDS</h4>
<div>
<img src="./images/10015.jpg" alt="">
<img src="./images/10016.png" alt="">
<img src="./images/10017.png" alt="">
<img src="./images/10018.jpg" alt="">
<img src="./images/10019.jpg" alt="">
<img src="./images/10020.png" alt="">
</div>
</div>
<!-- <div id="futter"></div> -->
<footer></footer>
<div id="last"></div>
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
<script>
var swiper = new Swiper(".mySwiper", {
slidesPerView: 3,
spaceBetween: 30,
slidesPerGroup: 3,
loop: true,
loopFillGroupWithBlank: true,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
</script>
</body>
</html>
<script src="./scripts/women.js" type="module"></script>