-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDastyor1.html
71 lines (70 loc) · 1.77 KB
/
Dastyor1.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dastyor</title>
<link rel="stylesheet" type="text/css" href="food.css" />
</head>
<body>
<h1>Dastyor Foodie</h1>
<nav>
<ul>
<a href="#"><li>Home</li></a>
<a href="#"><li>Order</li></a>
<a href="#"><li>Near</li></a>
<a href="#"><li>About</li></a>
</ul>
</nav>
<section class="items">
<div class="item">
<img src="images/pizza1.jpg" />
<h2>Pizza Veg</h2>
<button>Order</button>
</div>
<div class="item">
<img src="images/pizza2.jpg" />
<h2>Pizza with meat</h2>
<button>Order</button>
</div>
<div class="item">
<img src="images/pizza2.jpg" />
<h2>Pizza +1 free</h2>
<button>Order</button>
</div>
<div class="item">
<img src="images/burger1.jpg" />
<h2>American Burger</h2>
<button>Order</button>
</div>
<div class="item">
<img src="images/pasta.jpg" />
<h2>Pasta</h2>
<button>Order</button>
</div>
<div class="item">
<img src="images/pasta2.jpg" />
<h2>Italian Pasta</h2>
<button>Order</button>
</div>
<div class="item">
<img src="images/pasta3.jpg" />
<h2>Pasta Mexico</h2>
<button>Order</button>
</div>
<div class="item">
<img src="images/salad.jpg" />
<h2>Salad</h2>
<button>Order</button>
</div>
<div class="item">
<img src="images/desserts.jpg" />
<h2>Desserts</h2>
<button>Order</button>
</div>
<div class="item">
<img src="images/coffe.jpg" />
<h2>Coffe</h2>
<button>Order</button>
</div>
</section>
</body>
</html>