-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pizza Delivery Shop</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrapper">
<header>
<h1>Pizza Delivery Shop</h1>
<p>Order online and enjoy.</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="#">Menu</a>
<a href="#">Contact</a>
</nav>
<main>
<div class="pizza_container">
<div class="pizza">
<img src="pizza-g5f7985080_640.jpg" alt="Magherita_Pizza">
<h2>Magherita Pizza</h2>
<p>Tomato sauce, Magherita cheese, fresh basil.</p>
<p>RM 38.00</p>
<a href="#" class="order">Order now</a>
</div>
<div class="pizza">
<img src="pizza-g9786eb19f_640.jpg" alt="Olive_Pizza">
<h2>Olive Pizza</h2>
<p>Fresh olives, Magherita cheese, fresh basil.</p>
<p>RM 45.00</p>
<a href="#" class="order">Order now</a>
</div>
<div class="pizza">
<img src="pizza-gaf89bae67_640.jpg" alt="Mozarella_Pizza">
<h2>Mozarella Pizza</h2>
<p>Fresh pineapple, Mozarella cheese, fresh basil.</p>
<p>RM 30.00</p>
<a href="#" class="order">Order now</a>
</div>
</div>
</main>
<footer>
Copyright © Pizza Delivery Shop <br>
<a href="mailto:pizzadeliveryshop@gmail.com">E-mail us</a>
</footer>
</div>
</body>
</html>