-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (100 loc) · 4.12 KB
/
Copy pathindex.html
File metadata and controls
103 lines (100 loc) · 4.12 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coffee Master</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="assets/coffee_masters_logo.png">
</head>
<body>
<nav>
<div class="nav-bar">
<a href="#" class="nav-item">
<img src="assets/coffee_masters_logo.png" alt="coffee_masters_logo class="logo">
<h1 class="">Coffee Masters</h1>
</a>
</div>
</nav>
<section>
<div class="hero-section">
<div class="items-name-payment-cnt">
<div class="item-cnt">
<table>
<h2>ITEMS</h2>
<tbody>
<tr>
<td><span>1x</span> Cappuccino</td>
<td class="price">$3.35</td>
</tr>
<tr>
<td class="sub-item">Lite foam</td>
</tr>
</tbody>
<tbody>
<tr>
<td class="cappuccino"> <span>1x</span> Cappuccino</td>
<td class="price cappuccino">$3.85</td>
</tr>
<tr>
<td class="lite-milk">Lite milk</td>
</tr>
<tr>
<td class="sub-item">Double espresso</td>
</tr>
</tbody>
<tbody>
<tr>
<td class="croissant"><span>1x</span> Croissant</td>
<td class="price croissant">$2.45</td>
</tr>
<tr>
<td class="butter">Butter</td>
</tr>
</tbody>
</table>
</div>
<div class="name-payment-cnt">
<div class="name-cnt">
<h2 class="name">NAME</h2>
<label for="name" class="name-of-order">Name of order</label><br>
<input type="text" name="name" placeholder="Ford Perfect" id="name">
</div>
<div class="payment-cnt">
<h2 class="payment">PAYMENT</h2>
<label for="card-number" class="card-number">Card number</label><br>
<input type="text" name="card-number" placeholder="1234 5678 9102 3456" id="card-number"><br>
<label for="CCV Number" class="ccv-number">CCV Number</label><br>
<input type="text" name="CCV Number" placeholder="001" id="ccv-number">
</div>
</div>
</div>
</div>
</section>
<section>
<div class="cal-cnt">
<div class="sub-total-tax">
<table>
<tbody>
<tr>
<td class="subtotal">Subtotal:</td>
<td class="money">$9.65</td>
</tr>
<tr>
<td class="tax">Tax:</td>
<td class="money">$0.82</td>
</tr>
<tr class="total">
<td class="total">Total:</td>
<td class="total-money">$10.47</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<section class="place-order-btn">
<button type="submit" class="place-order">Place Order</button>
</section>
</body>