-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (86 loc) · 2.9 KB
/
index.html
File metadata and controls
88 lines (86 loc) · 2.9 KB
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
<!DOCTYPE html>
<html lang="en">
<head class="hello">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coffee.Masters</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="main-head">
<h1 class="brand"><img class="logo" src="https://btholt.github.io/complete-intro-to-web-dev-v3/images/coffee_masters_logo.png" alt="image of company logo">
Coffee Masters</h1>
</header>
<div class="page">
<section class="order box">
<h2 class="order-items">ITEMS</h2>
<ul class="items">
<li class="item">
<div class="item-quantity">1x</div>
<div class="item-title">Cappucino</div>
<div class="item-price">$6.00</div>
<ul class="item-option-list">
<li class="item-option">Light Foam</li>
</ul>
</li>
<li class="item">
<div class="item-quantity">2x</div>
<div class="item-title">Cappucino</div>
<div class="item-price">$7.40</div>
<ul class="item-option-list">
<li class="item-option">Almond Milk</li>
<li class="item-option">Double Espresso Shot</li>
</ul>
</li>
<li class="item">
<div class="item-quantity">1x</div>
<div class="item-title">Croissant</div>
<div class="item-price">$5.60</div>
<ul class="item-option-list">
<li class="item-option">Butter</li>
</ul>
</li>
</ul>
</section>
<section class="payment">
<div class="name-box box">
<h2 class="order-items">NAME</h2>
<div class="input-group">
<label class="user-input-label" for="name">Name for order</label>
<input type="text" class="user-input" id="name">
</div>
</div>
<div class="cc-box box">
<h2 class="order-items">PAYMENT</h2>
<div class="input-group">
<label class="user-input-label" for="cc">Card number</label>
<input type="text" class="user-input" id="cc">
</div>
<div class="input-group">
<label class="user-input-label" for="ccv">CCV number</label>
<input type="text" class="user-input short-input" id="ccv">
</div>
</div>
</section>
<section class="total">
<table class="total-table">
<tbody>
<tr class="hello">
<td class="how">Subtotal:</td>
<td class="are">$19.27</td>
</tr>
<tr>
<td>Tax:</td>
<td>$0.96</td>
</tr>
<tr class="final-total">
<td>Total:</td>
<td>$20.23</td>
</tr>
</tbody>
</table>
<button class="checkout" type="button">Place Order</button>
</section>
</div>
</body>
</html>