-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
54 lines (46 loc) · 1.31 KB
/
menu.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>Nadeen's Hermitage Haven - Nashville, TN - 3410 Lebanon Pike Hermitage, TN 37076 - 615.873.1184
</title>
<style>
body, html {
height: 100%;
margin: 0;
}
.bg {
/* The image used */
background-image: url("img_girl.jpg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
h2 {
margin: 0;
}
</style>
</head>
<body>
<div class="bg">
<header>
<h2>
Nadeen's Hermitage Haven
</h2>
<nav>
<ul class="nav-ul">
<li><a href="index.html">home</a></li>
<li><a href="menu.html">menu</a></li>
<li><a href="contact.html">contact</a></li>
<li><a href="#">jobs</a></li>
</ul>
</nav>
</header>
</div>
</body>
</html>