forked from cambridgecoding/webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold web.html
28 lines (19 loc) · 836 Bytes
/
old web.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
<!DOCTYPE html>
<html>
<head>
<title>Burger Town City Limits</title>
<link rel="stylesheet" href="norman-style.css">
</head>
<body>
<h1>Norman's Burger Town</h1>
<p>Welcome to the city limits of the best burgers and fries.</p>
<p>Our menu includes:</p>
<ul>
<li> <a href="burgers.html" class="non-veggie menu-item" id="first-item">Burgers</a> </li>
<li> <a href="fries.html" class="veggie menu-item">Fries</a> </li>
<li> <a href="milkshakes.html" class="non-veggie menu-item veggie">Milkshakes</a> </li>
<li> <a href="haggis.html" class="non-veggie menu-item" id="haggis">Haggis</a> </li>
<li> <a href="beans-on-toast.html" class="menu-item veggie">Beans on Toast</a> </li>
</ul>
</body>
</html>