-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
69 lines (60 loc) · 1.54 KB
/
about.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Big+Shoulders+Text:100,300,400,500,600,700,800,900&display=swap');
.nav-flex-row {
display: flex;
flex-direction: row;
justify-content: center;
position: absolute;
z-index: 100;
left: 0;
width: 100%;
padding: 0;
}
.nav-flex-row li {
text-decoration: none;
list-style-type: none;
padding: 20px 15px;
}
.nav-flex-row li a {
font-family: 'Big Shoulders Text', cursive;
color: black;
font-size: 1.5em;
text-transform: uppercase;
font-weight: 300;
text-decoration: none;
}
.nav-item{
text-decoration: none;
transition: all 0.3s ease-out;
}
.nav-item:hover{
transform: scale(1.1);
text-decoration: underline;
}
</style>
</head>
<body>
<nav>
<ul class="nav-flex-row">
<li class="nav-item">
<a href="index.html">Home</a>
</li>
<li class="nav-item">
<a href="reservation.html">Reservation</a>
</li>
<li class="nav-item">
<a href="menu.html">Menu</a>
</li>
<li class="nav-item" id="spec">
<a href="speciality.html">Speciality</a>
</li>
</ul>
</nav>
</body>
</html>