-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenu.html
More file actions
58 lines (51 loc) · 1.67 KB
/
Menu.html
File metadata and controls
58 lines (51 loc) · 1.67 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>
<head>
<title>Menu</title>
<link rel="stylesheet" type="text/css" href="menu.css">
</head>
<body>
<nav>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="#"><li>Menu</li></a>
<a href="#"><li>Basket</li></a>
<a href="#"><li>About</li></a>
</ul>
</nav>
<h1>Food Menu</h1>
<section class="items">
<div class="item">
<img src="pizza.jpg" width="300px" height="200px">
<h4>Pizza{85$}</h4>
<button>Order</button>
</div>
<div class="item">
<img src="burger.jpg" width="300px" height="200px">
<h4>Burger{30$}</h4>
<button>Order</button>
</div>
<div class="item">
<img src="salad.jpg" width="300px">
<h4>Salad{50$}</h4>
<button>Order</button>
</div>
<div class="item">
<img src="pasta.jpg" width="300px">
<h4>Pasta{25$}</h4>
<button>Order</button>
</div>
<div class="item">
<img src="Spaghetti.jpg" width="300px">
<h4>Spaghetti{100$}</h4>
<button>Order</button>
</div>
<div class="item">
<img src="Sandwich-Special.jpg" width="300px">
<h4>Sandwich-Special{75$}</h4>
<button>Order</button>
</div>
</section>
<caption><strong>Come one! Come all!</strong></caption>
</body>
</html>