-
Notifications
You must be signed in to change notification settings - Fork 0
/
Streetfood.php
59 lines (55 loc) · 1.81 KB
/
Streetfood.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/home.css">
</head>
<body>
<div class="firstHalf">
<h1 class="center" id="web">
Street food
</h1>
<br>
</div>
<div>
<section class="items">
<div class="item">
<img src="./image/vada_pav.jpg">
<h2>vada pav</h2>
<a href="food.php"><button>Order</button></a>
</div>
<div class="item">
<img src="./image/pizza.jpg">
<h2 text-align="center">Pizza</h2>
<a href="food.php"><button>Order</button></a>
</div>
<div class="item">
<img src="./image/sandwich.jpg">
<h2>Sandwich</h2>
<a href="food.php"><button>Order</button></a>
</div>
<div class="item">
<img src="./image/frenchfries.jpg">
<h2>French Fries</h2>
<a href="food.php"><button>Order</button></a>
</div>
<div class="item">
<img src="./image/pasta.jpg">
<h2>Pasta</h2>
<a href="food.php"><button>Order</button></a>
</div>
<div class="item">
<img src="./image/momos.jpg">
<h2>Momos</h2>
<a href="food.php"> <button>Order</button></a>
</div>
<div class="item">
<img src="./image/Burger.jpg">
<h2>Burger</h2>
<a href="food.php"> <button>Order</button></a>
</div>
</section>
</div>
</body>
</html>