-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpizza.html
More file actions
50 lines (44 loc) · 1.28 KB
/
pizza.html
File metadata and controls
50 lines (44 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pizza</title>
</head>
<style>
body{
background-image: url(pizzas.jpg);
background-repeat: no-repeat;
background-size: cover;
}
h1{
padding-right: 15%;
text-align:left;
color:#ff3700c5;
}
h5{
padding-right: 15%;
text-align:left;
color: rgb(0, 0, 0);
}
a{
color:rgb(57, 20, 220);
padding: 1%;
border: 3px solid black;
}
</style>
<body>
<a href="index.html">Home</a>
<a href="burger.html">BURGERS</a>
<a href="barbq.html">BAR B.Q</a>
<a href="chinese.html">CHINESE</a>
<a href="pizza.html">PIZZA</a>
<a href="deals.html">DEALS</a>
<h1>OUR PIZZA</h1>
<h5>Malai pizza-------------------------------------$500</h5>
<h5>Aghwani pizza-------------------------------$450</h5>
<h5>Barb.q Pizza ------------------------------------------$300</h5>
<h5>Chicken Tikka Pizza----------------------------------------$550</h5>
</body>
</html>