-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
159 lines (157 loc) · 5.04 KB
/
main.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<title>Main Page</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<div class="container main-page">
<div class="row head">
<div class="rowhead">
<img id="image-edit" src="assets/img/imageedit_1_3378221444.png" />
<h2>Fast Food</h2>
</div>
<div class="rowheadie">
<img
id="cart"
data-toggle="modal"
data-target="#exampleModalScrollable"
src="assets/img/shopping-cart.png"
alt=""
srcset=""
/>
<img id="log-out" src="assets/img/log-out (1).png" alt="" srcset="" />
</div>
</div>
<div class="row second" id="cards-wrapper">
<div class="card">
<img
src="assets/img/burger.jpeg"
class="card-img-top burger-pic"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">
Some quick example text to build on the card title and make up the
bulk of the card's content.
</p>
<div class="butn">
<div class="price-tag"><p>$700</p></div>
<button type="button">Add</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div
class="modal fade"
id="exampleModalScrollable"
tabindex="-1"
role="dialog"
aria-labelledby="exampleModalScrollableTitle"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-scrollable" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalScrollableTitle">
My Food Cart
</h5>
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="cart-body-wrapper">
<div id="cart-holder">
<div class="cart-add d-flex justify-content-between my-3">
<img
src="/assets/img/burger.jpeg"
id="second-burger"
alt=""
srcset=""
/>
<div class="d-flex icon">
<img
class="icons"
src="/assets/img/minus.svg"
alt=""
srcset=""
/>
<p>1</p>
<img
class="icons"
src="/assets/img/add.svg"
alt=""
srcset=""
/>
</div>
<p>₦700</p>
</div>
</div>
<br />
<div class="total">
<p class="t-text">Total:</p>
₦
<p id="t-price">₦ 2100</p>
</div>
<br />
<input
id="phone-no"
type="text"
placeholder="Enter Phone number"
/>
<br />
<br />
<input
id="address"
type="text"
placeholder="Enter House address"
/>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn dismiss" data-dismiss="modal">
Complete
</button>
</div>
</div>
</div>
</div>
</div>
</body>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="assets/js/data.js"></script>
<script src="assets/js/main.js"></script>
</html>