-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbaby.html
143 lines (122 loc) · 4.55 KB
/
baby.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
<!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">
<title>baby</title>
<link rel="stylesheet" href="./styles/women.css">
<!-- title icone -->
<link rel="shortcut icon" href="https://asset.uniqlo.com/logotypes/uniqlo_roman.ico">
<!-- footer css link here -->
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet" href="./styles/nav.css">
</head>
<body>
<div id="navbarContainer"></div>
<div class="women_container">
<div class="topImg">
<a href="./bodysuit.html"><img
src="https://im.uniqlo.com/global-cms/spa/res0110384475ffa27de58d950f97501492fr.jpg" alt=""></a>
</div>
<div class="newArrivals">
<h1>NEW ARRIVAL</h1>
<div class="topImg">
<a href="./bodysuit.html"><img
src="https://im.uniqlo.com/global-cms/spa/res5f6e37c4cdf7e3a842577c9ef592dddefr.jpg" alt=""></a>
</div>
<div class="slideProducts1"></div>
<div class="moreNewArrivals">
<a href="./bodysuit.html">
<h3>SEE MORE NEW ARRIVALS</h3>
</a>
</div>
</div>
<div class="newArrivals">
<h1>MUST BUY</h1>
<div class="topImg">
<a href="./bodysuit.html"><img
src="https://im.uniqlo.com/global-cms/spa/resa63e8605472039e7c77302ac81394d06fr.jpg" alt=""></a>
</div>
<div class="slideProducts2"></div>
<div class="moreNewArrivals">
<a href="./bodysuit.html">
<h3>SEE MORE LIMITED OFFER
</h3>
</a>
</div>
</div>
<div class="newArrivals">
<h1>SALE</h1>
<div class="topImg">
<a href="./bodysuit.html"><img
src="https://im.uniqlo.com/global-cms/spa/resda1c300017e1071ad77415b1d8b7313ffr.jpg" alt=""></a>
</div>
<div class="slideProducts3"></div>
<div class="moreNewArrivals">
<a href="./bodysuit.html">
<h3>SEE MORE SALE
</h3>
</a>
</div>
</div>
<h1>TOPICS</h1>
<div class="topics">
<div>
<div>
<img src="https://im.uniqlo.com/global-cms/spa/res18a408cb9e7b901fdb8649ba890c7844fr.jpg" alt="">
</div>
<div>
<h2>APP EXCLUSIVE BENERITS</h2>
<h3>Enjoy 9 benefits of our APP from welcome coupon, exclusive prices to store pick UPI Click here
to know more.</h3>
</div>
</div>
</div>
<div class="newArrivals">
<h1>PICKUP CATEGORY</h1>
<div class="slideProducts5"></div>
</div><br><br><br>
<div class="topImg">
<h1>FEATURED NEWS</h1><br>
<a href="./bodysuit.html"><img
src="https://im.uniqlo.com/global-cms/spa/res5c0443ad2fd7bcd29ca97a1fffca7255fr.jpg" alt=""></a>
<h5>KIDS AND BABY CATALOGUE</h5>
<h6>Simple design for a touch of fun for everyday wear. Find out more.</h6>
</div>
<div class="newArrivals">
<div class="moreNewArrivals">
<a href="./bodysuit.html">
<h3>SEE MORE FEATURED NEWS
</h3>
</a>
</div>
</div>
<div class="topImg">
<h1>STYLING BOOK</h1>
<a href="./bodysuit.html"><img
src="https://im.uniqlo.com/global-cms/spa/resa510917e4807e954c83dd288a1b3ce34fr.jpg" alt=""></a>
</div><br><br><br>
<div class="newArrivals">
<h1>UNIQLO TODAY</h1>
<div class="slideProducts8"></div>
<div class="moreNewArrivals">
<a href="./bodysuit.html">
<h3>SEE MORE UNIQLO TODAY
</h3>
</a>
</div>
</div>
</div>
<div id="footer-container"></div>
</body>
</html>
<script type="module">
import footer from "./components/footer.js"
let footerdiv = document.getElementById("footer-container");
footerdiv.innerHTML = footer();
</script>
<script src="./scripts/baby.js">
</script>
<script type="module" src="./scripts/main.js">
</script>