-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
60 lines (54 loc) · 1.92 KB
/
Copy pathmenu.html
File metadata and controls
60 lines (54 loc) · 1.92 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
59
60
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Menu</title>
<link rel="stylesheet" type="text/css" href="css/interface.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div id="page">
<!-- "../index.html" -->
<a href="index.html" title="Click here to return to the home page">
<img class="main_image" src="images/logo.gif" alt="Example cafe" width="194" height="80" />
</a>
<div id="navigation">
<a href="index.html">HOME</a>
MENU
<a href="recipes.html">RECIPES</a>
<a href="opening.html">OPENING</a>
<a href="contact.html">CONTACT</a>
<a href="course.html">COURSE</a>
</div>
<h1><a id="top">Example Cafe Menu</a></h1>
<p><a href="#">Starters</a> | <a href="#mains">Main Courses</a> | <a href="#desserts">Desserts</a> </p>
<h2> <a id="starters">Starters</a></h2>
<ul>
<li>Chestnut and Mushroom Goujons(<a href="#vege">v</a>)</li>
<li> Goat Cheese Salad (<a href="#vege">v</a>)</li>
<li>Honey Soy Chicken Kebabs</li>
<li>Seafood Salad</li>
</ul>
<p><small><a href="#top">Back to top</a></small></p>
<h2><a id="mains">Main Courses</a></h2>
<ul>
<li>Spinach and Ricotta Roulade(<a href="#vege">v</a>)</li>
<li>Beef Tournados with Mustard and Dill Sauce</li>
<li>Roast Chicken Salad</li>
<li>Icelandic Cod with Parsley Sauce</li>
<li>Mushroom Wellington (<a href="#vege">v</a>)</li>
</ul>
<p><small><a href="#top">Back to top</a></small></p>
<h2><a id="desserts">Desserts</a></h2>
<ul>
<li>Lemon Sorbet(<a href="#vege">v</a> )</li>
<li>Chocolate Mud Pie (<a href="#vege">v</a> )</li>
<li>Pecan Pie(<a href="#vege">v</a>)</li>
<li>Selection of Fine Cheeses from Around the World</li>
</ul>
<p><small><a href="#top">Back to top</a></small></p>
<p><a id="vege">Items marked with a (v) are suitable for vegetarians.</a></p>
</div>
</body>
</html>