-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (99 loc) · 2.99 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
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
104
105
106
<html>
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
/>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Smythe&display=swap"
rel="stylesheet"
/>
<!-- Main stylesheet-->
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header>
<div class="header-inner">
<div>
<h1>Jimmy's Diner</h1>
<h2>The best burgers and pizzas in town</h2>
</div>
</div>
</header>
<main>
<!-- to be continued -- this section is as placeholder for the layout-->
<section id="order-items">
<!-- <div class="items-ordered">
<img src="images/item-pizza.png" />
<div class="items-details">
<p class="item-name">Pizza</p>
<p class="item-ingredients">pepperoni, mushroom, mozarella</p>
<p class="item-price">$14</p>
</div>
<div class="items-add">
<img src="images/add-btn.png" />
</div>
</div>
<div class="items-ordered">
<img src="images/item-burger.png" />
<div class="items-details">
<p class="item-name">Hamburger</p>
<p class="item-ingredients">beef, cheese, letuce</p>
<p class="item-price">$12</p>
</div>
<div class="items-add">
<img src="images/add-btn.png" />
</div>
</div>
<div class="items-ordered">
<img src="images/item-beer.png" />
<div class="items-details">
<p class="item-name">Beer</p>
<p class="item-ingredients">grain, hops, yeast, water</p>
<p class="item-price">$12</p>
</div>
<div class="items-add">
<img src="images/add-btn.png" />
</div>
</div> -->
</section>
<!-- Order summary -->
<section id="order-total">
<h1 class="your-order">Your order</h1>
<div id="ordered-items">
<!-- shopping-cart -->
</div>
<!-- <div class="order-summary">
<div>
<h2>Pizza <a href="#" class="delete-item">remove</a></h2>
</div>
<div>
<h2>$14</h2>
</div>
</div>
<div class="order-summary">
<div>
<h2>Beer <a href="#" class="delete-item">remove</a></h2>
</div>
<div>
<h2>$12</h2>
</div>
</div> -->
<hr />
<div class="order-summary">
<div>
<h2>Total price:</h2>
</div>
<div>
<h2>$26</h2>
</div>
</div>
<button id="complete-order" class="btn-complete">Complete order</button>
</section>
</main>
<script src="index.js" type="module"></script>
</body>
</html>