-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<title>Made-Up Restaurant</title>
<link href="https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap" rel="stylesheet">
</head>
<body>
<img src="https://studio.code.org/v3/assets/zw4vdSBQyCbK_ICoZdi_EfBduWPK5SgMjoLLkjaWWQU/lg.PNG?t=1628565409948" >
<div class="menu">
<div class="dishes">
<h1>Dishes</h1>
<img src="https://media.istockphoto.com/vectors/chinese-food-icons-vector-id1200045950?s=612x612" >
<p>Each $10.99</p>
</div>
<div class="snacks">
<h1>Snacks</h1>
<ul class="snackList">
<li>Fried Tofu</li>
<li>Fried Taro</li>
<li>Curly Fries</li>
<li>French Fries</li>
<li>Curry Fish Balls</li>
<li>Popcorn Chicken</li>
</ul>
<p>Each $5.99</p>
</div>
<div class="decor">
</div>
</div>
<div class="order">
<h2>Order</h2>
<input class="number" placeholder="Amount (#) ex) 1 or 2 ">
<input class="food" placeholder="Word format ex) Dim Sum">
<button class="add">Add</button>
</div>
<div class="collection">
<div class="end">
<h2 class="receiptCart">Cart</h2>
<h4 class="p">Current Points = 0</h4>
<h4 class="total">Expected Cost = $0</h4>
</div>
<div class="items">
</div>
<div class="buttons">
<button class="checkout">Checkout</button>
<button class="clear">Reset</button>
<button class="redeem">Redeem</button>
</div>
</div>
</body>
</html>