-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestaurant.html
More file actions
52 lines (38 loc) · 956 Bytes
/
restaurant.html
File metadata and controls
52 lines (38 loc) · 956 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Restaurant Menu</title>
<style type="text/css">
h1
{
font-family: algerian;
}
.hero-image
{
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("image1.jpg");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
a
{
color: white;
}
</style>
</head>
<body>
<div class="hero-image">
<div style="text-align: center;font-family: algerian;font-size: 20px;margin-top: 10px;color: white;text-decoration: underline;">
<p><b>Restaurant Menu</b></p>
<a href="#">1.Starter</a><br>
<a href="#">2.Meals</a><br>
<a href="#">3.Deserts</a><br>
<a href="#">4.Cocktails</a><br>
</div>
</div>
</body>
</html>