-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-courses.html
53 lines (45 loc) · 1.61 KB
/
main-courses.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=S, initial-scale=1.0">
<meta name="description" content="This is the drinks menu page for Zack's Family Diner a restaurant in Hämeenlinna">
<title>Main courses</title>
<meta name="author" content="Tuomas Talkio">
</head>
<body>
<div class="row" style="margin-bottom: 5px;">
<nav class="navbar navbar-expand-sm navbar-dark">
<a class="nav-link" href="index.html">Main Page</a>
<a class="nav-link" href="main-courses.html">Main courses</a>
<a class="nav-link" href="drinks.html">Drinks</a>
<a class="nav-link" href="desserts.html">Desserts</a>
</nav>
</div>
<img src="Images/rutuarfu.png" alt="Logo" width="42" height="42" style="float:left">
<h1>Zack's family diner</h1>
<h2>Main courses</h2>
<p>
Cheese hamburger and fries 14,90€
<br>
<em>Whole beef steak, cheddar cheese, red onions, salad, ketchup, mayonaise</em>
</p>
<p>
Meat lovers Pizza 14,90€
<br>
<em>Cheese, ham, roasted bacon, kebab-meat, pepperoni sausage, beaf'n'roast minced beef</em>
</p>
<p>
Lentil bolognese 11,90€
<br>
<em>Lentil, pasta, carrot, onions, tomato puree</em>
</p>
<p>
Potato mash and meatballs 11,90€
<br>
<em>Potato mash, eggs, butter, onion, minced meat sauce</em>
</p>
<link href="text-align.CSS" rel="stylesheet" type="text/css">
</body>
</html>