-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhotel.html
More file actions
58 lines (56 loc) · 1.68 KB
/
hotel.html
File metadata and controls
58 lines (56 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head >
<title>hotel menu</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width , initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<h1 class="text-center">Our Menu</h1>
<div class="row">
<div class="col-lg-4 we">
<h2 id="b">chicks</h2>
Butter chicken is an Indian dish made with mildly spiced tomato sauce
<ul>
<li>Chicken dishes</li>
<li>Afritada</li>
<li>Airline chicken</li>
<li>Adobo</li>
<li>Ají de gallina</li>
<li>Andong jjimdak</li>
<li>Arroz con pollo</li>
<li>Ayam bakar</li>
<li>Ayam betutu</li>
</ul>
</div>
<div class="col-lg-4 ue">
<h2 id="c">beef</h2>
<ul>
<li>A cheeseburger with mushroom sauce and fries</li>
<li>Carne de Ávila</li>
<li>Gyutan teishoku</li>
<li>Mechado </li>
<li>Rendang</li>
</ul>
</div>
<div class="col-lg-4 re">
<h2 id="d">sushi</h2>
<ul>
<li> SUSHI NIGIRI</li>
<li>Quail Eggs*</li>
<li>SASHIMI </li>
<li>Salmon*</li>
<li>SASHIMI COMBO*</li>
<li> Assorted Fresh Fish</li>
<li>SUSHI & ROLL COMBO*</li>
<li>sushi with California Roll</li>
</ul>
</div>
</div>
</body>
</html>