-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavigation.html
66 lines (55 loc) · 1.03 KB
/
navigation.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Chewy">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.navbar {
overflow: hidden;
background-color: #eb6909;
position: fixed;
bottom: 0;
width: 100%;
}
.navbar a {
float: left;
display: block;
color: #3e1b57;
text-align: center;
padding: 14px 16px;
font-weight: bold;
font-size: 17px;
font-family: Chewy;
}
.navbar a:hover {
background: #f1f1f1;
color: black;
}
.navbar a.active {
background-color: #fc03ad;
color: white;
}
.main {
padding: 16px;
margin-bottom: 30px;
}
</style>
</head>
<body>
<div class="navbar">
<a href="index.html" class="active">Home</a>
<a href="about.html">About</a>
<a href="location.html">Location</a>
<a href="gallery.html">Gallery</a>
<a href="products.html">Products</a>
<a href="services.html">Services</a>
</div>
<div class="main">
</div>
</body>
</html>