-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkids.html
130 lines (96 loc) · 4.08 KB
/
kids.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
<!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>Kids Products</title>
<link rel="shortcut icon" href="https://asset.uniqlo.com/logotypes/uniqlo_roman.ico">
<link rel="stylesheet" href="./styles/footer.css">
<script src="https://kit.fontawesome.com/f7879b5792.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/styles/nav.css" />
</head>
<link rel="stylesheet" href="./styles/mens.css">
<body>
<div id="navbarContainer"></div>
<div id="maindiv">
<img src="https://im.uniqlo.com/global-cms/spa/res856f1c96b760e6b4c8bdd13d3c481f68fr.jpg" alt="">
<img style="margin-top: 60px;" src="https://im.uniqlo.com/global-cms/spa/res3d6b4c1894ed43e9572565367dfe09a3fr.jpg" alt="">
<div id="div2">
<h1>NEW ARRIVAL</h1>
<img src="https://im.uniqlo.com/global-cms/spa/resc8269e8e046b42c0f0ba8d779d0efcd3fr.jpg" alt="">
</div>
<div id="product4"></div>
<a id="see_more" href="">SEE MORE NEW ARRIVALS</a>
<div id="must_buy">
<h1>MUST BUY</h1>
<img src="https://im.uniqlo.com/global-cms/spa/resb79884cceec3e0e8007f48a2f29710c0fr.jpg" alt="">
</div>
<div id="limited_offer"></div>
<a id="limitedoffer" href="">SEE MORE LIMITED OFFER</a>
<div id="sale">
<h1>SALE</h1>
<img src="https://im.uniqlo.com/global-cms/spa/resd127e72daddf25db466e50f2242f693ffr.jpg" alt="">
</div>
<div id="sale_product"></div>
<a id="saleoffer" href="">SEE MORE SALE</a>
<div id="featured">
<h1>FEATURED COLLECTION</h1>
<img src="https://im.uniqlo.com/global-cms/spa/resccd53dd20d37caafbc990a87ca93ccd3fr.jpg" alt="">
</div>
<div id="featured_offer"></div>
<h1>TOPICS</h1>
<div id="topics">
<div id="smalltopic" >
<div>
<img src="https://im.uniqlo.com/global-cms/spa/res18a408cb9e7b901fdb8649ba890c7844fr.jpg" alt="">
</div>
<div>
<h3>APP EXCLUSIVE BENEFITS</h3>
<p>Enjoy 9 Denefis or our APP from wercome coupon,
exclusive prices to store pick up! Click here to
know more.</p>
</div>
</div>
<!-- <div id="smalltopic">
<div>
<img src="https://im.uniqlo.com/global-cms/spa/rescaae9585259751a2573d1b3672e90922fr.jpg" alt="">
</div>
<div>
<h3>EXTRA SIZES</h3>
<p>Extended sizes now available for our most popular
products!</p>
</div>
</div> -->
</div>
<h1>PICKUP CATEGORY</h1>
<div id="pickup"></div>
<h1>FEATURED NEWS</h1>
<div>
<div id="featured_news"></div>
<h4 id="sweats">SWEATS COLLECTION</h4>
<p id="sweats">Wear it your way. A comfortable and relaxed way fashion style.</p>
</div>
<div id="collection"></div>
<a id="saleoffer" href="">SEE MORE FEATURED NEWS</a>
<h1>SPECIAL COLLABORATION</h1>
<img src="https://im.uniqlo.com/global-cms/spa/res1ede667c2f1d9584945ed1c09f0d2d91fr.jpg" alt="" width="1200px" style="margin-bottom: 60px;">
<!-- <div id="special"></div> -->
<h1>STYLING BOOK</h1>
<img src="https://im.uniqlo.com/global-cms/spa/resae0d4059b1b66e31cab4cab4ef8fa7d5fr.jpg" alt="" width="1210px">
<h1 style="margin-top: 60px;">UNIQLO TODAY</h1>
<div id="today"></div>
<a id="saleoffer" href="">SEE MORE UNIQLO TODAY</a>
</div>
<div id="down"></div>
</body>
</html>
<script src="./scripts/kids.js">
</script>
<script type="module">
import footer from "./components/footer.js"
let downA =document.getElementById("down")
downA.innerHTML =footer()
</script>
<script type="module" src="./scripts/main.js">
</script>