-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (73 loc) · 2.45 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles.css" media="screen" title="no title" charset="utf-8">
<title>Niki's Closet</title>
</head>
<body>
<div id="wrap">
<div class="header">
<div class="icon">
<h1>Niki's Closet</h1>
<img class="hanger" src="img/Bitmap.png" alt="Black hanger icon" />
</div>
<div class="nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">See your Cart</a></li>
</ul>
</div>
</div>
<div class="main">
<div class="info">
<ul>
<li><a href="#">Women</a></li>
<li><a href="#"> >Dresses</a></li>
<li><a href="#"> >Hello Sailor Dress</a></li>
</ul>
</div>
<div class="dressImage">
<img src="img/dress.jpg" alt="Sailor inspired dress in Navy blue with cream and navy striped trimming around the arm holes."/>
<p class="status">Only a few left!</p>
</div>
<div class="product">
<h2>Hello, Sailor Dress</h2>
<p>
Get ready to board the ship and say, "Aye, aye Caption!". This sailor inspired dress comes in navy blue with cream and navy striped trimming around the arms. Great for running errands or a fun weekend date.
</p>
<ul>
<li>Length: 34"</li>
<li>Back zipper</li>
<li>Pockets</li>
<li><a href="sizeChart.html">Size Chart</a></li>
</ul>
<br></br>
<p><em>$78.00</em></p>
<form class="order" action="index.html" method="post">
<label for="size">Size: </label>
<select id="size">
<option>XS</option>
<option>S</option>
<option>M</option>
<option>L</option>
</select>
<br></br>
<label for="qty">Qty: </label>
<input type="text">
<button type="submit" name="button">Buy</button>
</form>
<h3>Suggested Companion Pieces</h3>
<div class="items">
<img src="img/shoe.jpeg" alt="Women's White ballet flat" />
<img src="img/lipstick.jpg" alt="Red lipstick in a gold tube with red flowers" />
<img src="img/sunglasses.jpg" alt="Rayban sunglasses" />
</div>
</div>
</div>
</div>
</body>
</html>