-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
95 lines (84 loc) · 3.39 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="http://fonts.cdnfonts.com/css/frosty" rel="stylesheet">
<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>Document</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/shop.css">
</head>
<body>
<header>
<nav>
<div>
<h1>Kids World</h1>
</div>
<div class="cloud" >
<div class="cloudElement"></div>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="contactus.html">Contact us </a></li>
</ul>
</nav>
</header>
<main>
<h1 class="h1">KIDS SHOP</h1>
<section class='section1'>
</section>
<nav>
<ul id="cccccaart">
<li id="caaaart">
<a id="caarrt" href="cart.html">GO TO CART</a>
</li>
</ul>
</nav>
<section class="section2">
<form>
<fieldset>
<legend>SECTIONS</legend>
<label for="girls" id="color1">Girls section</label>
<select name="girls" id="girls">
<option value="">please choose option </option>
<option value="GirlsToys">Girl Toys</option>
<option value="GirlsClothes">Girl Clothes</option>
<option value="GirlsBags">Girl bags</option>
</select>
<br>
<label for="boys" id="color2">Boys section</label>
<select name="boys" id="boys">
<option value="">please choose option </option>
<option value="BoysToys">Boy Toys</option>
<option value="BoysClothes">Boy Clothes</option>
<option value="BoysBags">Boy bags</option>
</select>
</fieldset>
</form>
</section>
<section>
<table id="item-table"></table>
</section>
</main>
<footer>
<ul id="social">
<a href="https://www.twitter.com">
<img src="https://www.net-aware.org.uk/siteassets/images-and-icons/application-icons/app-icons-twitter.png?w=585&scale=down" alt="">
</a>
<a href="https://www.instagram.com">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg" alt="">
</a>
<a href="https://www.facebook.com/">
<img src="https://nveloop.com/wp-content/uploads/2021/02/instagram.jpg" alt="">
</a>
<ul id="contact">
<li>Phone number: +962 79 520 9793</li>
<li>Email: info@KidsWorld.com</li>
</ul>
</footer>
<script src="js/shop.js"></script>
</body>
</html>