-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
137 lines (135 loc) · 5.81 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="menu.css">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://burgerking.vn/skin/frontend/bk2/default/images/logo.png">
</head>
<body>
<!-- This is a Menu Page!!!!!! -->
<nav>
<div class="nav-links">
<a href="index.html">HOME</a>
<a href="menu.html">MENU</a>
<a href="#">OFFERS</a>
<a href="#">TRENDING</a>
<a href="#" style="color:rgb(232, 130, 75);">MORE</a>
</div>
<div class="nav-logo">
<img width=85" height="85"
src="https://burgerking.vn/skin/frontend/bk2/default/images/logo.png"/>
</div>
<div class="nav-buttons">
<button class="nav-buttons-signup">$0.00</button>
<button>SIGN UP</button>
</div>
</nav>
<main>
<section class="menu-section">
<h1 class="menu-header">MENU</h1>
<div class="row">
<div class="item">
<div class="item-picture-container">
<img class="item-picture"
src="images/bk_burger.jpg"/>
</div>
<div class="item-content-container">
<h3 class="item-text">Potato Chip Burger</h3>
<p class="item-price">139,000 VND</p>
<button>Add to Cart</button>
</div>
</div>
<div class="item">
<div class="item-picture-container">
<img class="item-picture"
src="images/bk_burger.jpg"/>
</div>
<div class="item-content-container">
<h3 class="item-text">Potato Chip Burger</h3>
<p class="item-price">139,000 VND</p>
<button>Add to Cart</button>
</div>
</div>
<div class="item">
<div class="item-picture-container">
<img class="item-picture"
src="images/bk_burger.jpg"/>
</div>
<div class="item-content-container">
<h3 class="item-text">Potato Chip Burger</h3>
<p class="item-price">139,000 VND</p>
<button>Add to Cart</button>
</div>
</div>
</div>
<div class="row">
<div class="item">
<div class="item-picture-container">
<img class="item-picture"
src="images/bk_burger.jpg"/>
</div>
<div class="item-content-container">
<h3 class="item-text">Potato Chip Burger</h3>
<p class="item-price">139,000 VND</p>
<button>Add to Cart</button>
</div>
</div>
<div class="item">
<div class="item-picture-container">
<img class="item-picture"
src="images/bk_burger.jpg"/>
</div>
<div class="item-content-container">
<h3 class="item-text">Potato Chip Burger</h3>
<p class="item-price">139,000 VND</p>
<button>Add to Cart</button>
</div>
</div>
<div class="item">
<div class="item-picture-container">
<img class="item-picture"
src="images/bk_burger.jpg"/>
</div>
<div class="item-content-container">
<h3 class="item-text">Potato Chip Burger</h3>
<p class="item-price">139,000 VND</p>
<button>Add to Cart</button>
</div>
</div>
</div>
</section>
<section class="api-section">
<div class="api-box">
<div class="api-box-inside">
<h3 class="api-box-header">Where we are?</h3>
<iframe class="api-box-window"
height="450" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d125431.36129088013!2d106.63936!3d10.755276799999997!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31752f1647b3d3a5%3A0x9177bcedc17a18f6!2sBurger%20King!5e0!3m2!1sen!2s!4v1581943102901!5m2!1sen!2s" width="600" height="450" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</div>
</div>
<div class="api-box">
<div class="api-box-inside">
<h3 class="api-box-header">If you have any questions?</h3>
<iframe height="450" class="api-box-window" allow="microphone;"
src="https://console.dialogflow.com/api-client/demo/embedded/0f7f12fb-5a6d-430d-8472-a82c30834d26">
</iframe>
</div>
</div>
</section>
</main>
<footer>
<div class="footer1">
<p>Burger King</p>
<p>TM & © 2019 Burger King Corporation. All Rights Reserved.</p>
<p>Home Menu</p>
</div>
<div class="footer2">
<p>Contact Email: [email protected]</p>
<p>Phone: 090 2299 3333</p>
<p>Location: 952 Nguyễn Văn Linh R16-1 Hưng Vượng 3 P, Quận 7, Hồ Chí Minh</p>
</div>
</footer>
</body>
</html>