-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathburger.html
More file actions
49 lines (43 loc) · 1.23 KB
/
burger.html
File metadata and controls
49 lines (43 loc) · 1.23 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
<!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>Burger</title>
<style>
body{
background-image: url(fast-food-wallpapers-backgrounds-for-powerpoint.jpg);
background-repeat: no-repeat;
background-size: cover;
}
h1{
padding-right: 15%;
text-align:center;
color:#DFFF00;
}
h5{
text-align:center;
padding-right: 15%;
}
a{
padding: 1%;
color:white;
border: 3px solid black;
}
</style>
</head>
<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 BURGERS </h1>
<h5>Chicken Burger-------------------------------------$500</h5>
<h5>Grilled Chicken Burger-------------------------------$450</h5>
<h5>Malai Burger ------------------------------------------$300</h5>
<h5>Zinger Burger----------------------------------------$550</h5>
</body>
</html>