-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
61 lines (59 loc) · 1.71 KB
/
cart.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Pokemon Store</title>
<link href="index.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>Pokemon Pop Cart</h1>
<h2>Continue Purchase Your Fav Pops</h2>
<nav>
<ul>
<li><a href="./">Home</a></li>
<li><a href="./store.html">Store</a></li>
<li><a href="./cart.html">Cart</a></li>
</ul>
</nav>
</header>
<hr />
<main>
<article>
<h2>Choose Your Pokemon</h2>
<p>Please fill in some data before you m ake an order</p>
<form>
<p>
<label for="pops">Cho ose your pop</label>
<select id="pops">
<option value="mew-two">Mew Two</option>
<option value="mew">Mew</option>
<option value="pikachu">Pikachu</option>
</select>
</p>
<p>
<label for="quantity"> Quantity</label>
<input id="quantity" type="number" min="1" max="3" />
</p>
<p>
<label for="pop-color">Pop Color</label>
<input id="pop-color" type="color" />
</p>
<fieldset>
<legend>Deliver To</legend>
<label for="name">Your Name</label>
<input id="name" placeholder="doctor code" />
<label for="password">Your Password</label>
<input id="password" type="password" required />
<p>
<label for="address">Your Address</label>
<textarea id="address"></textarea>
</p>
</fieldset>
<button>Buy Now</button>
</form>
</article>
</main>
</body>
</html>