-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.17 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Nike app</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:200,300" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="top">
<div class="ios">
<div class="icons-left">
<img id="signal" src="img/signal.svg">
<img src="img/wifi.svg">
</div>
<p class="icons-center">9:41 AM</p>
<div class="icons-right">
<img src="img/bluetooth.svg">
<p>51%</p>
<img id="battery" src="img/battery.svg">
</div>
</div>
<div class="menu">
<button id="menu-button"><img src="img/arrow.svg"></button>
<p id="title">Sunglasses</p>
<button id="menu-button"><img src="img/cart.svg"></button>
</div>
</div>
<div class="content">
<h4>Running Shoes</h4>
<h2>Nike Sportwear</br> Advance 15 2017</h2>
<img class="shoe" src="img/shoe.png">
<h4>Choose Size</h4>
<div class="sizes">
<button>32</button>
<button>33</button>
<button id="selected">34</button>
<button>35</button>
<button>36</button>
</div>
<button id="cart">Add to Cart</button>
</div>
</div>
</body>
</html>