-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.html
38 lines (38 loc) · 1.15 KB
/
bootstrap.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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<div class="text-center">
<img src="tea.jpg" class="img-fluid">
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="text-center">
<h1>Our Menu</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-6">
<h2>Falafel</h2>
<p>Chickpea, herbs, spices.</p>
<h2>Fried Calamari</h2>
<p>Squid, buttermilk.</p>
</div>
<div class="col-12 col-lg-6">
<h2>Pasta Salad</h2>
<p>Lettuce, vegetables, mozzarella.</p>
<h2>Greek Salad</h2>
<p>Cucumbers, onion, feta cheese.</p>
</div>
</div>
</div>
</body>
</html>