-
Notifications
You must be signed in to change notification settings - Fork 0
/
mgmt_rep.html
62 lines (59 loc) · 1.42 KB
/
mgmt_rep.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Zoo Home</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
padding: 10px;
text-align: center;
color: white;
}
nav {
background-color: #444;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
padding: 8px 16px;
display: inline-block;
}
nav a:hover {
background-color: #555;
}
.submenu {
display: none;
padding: 8px 0;
}
nav:hover .submenu {
display: block;
position: absolute;
background-color: #555;
}
</style>
</head>
<body>
<header>
<h1>Management Reporting</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="./MGMT_REPO/revenue_report.php">Revenue Report</a>
<a href="./MGMT_REPO/animal_report.php">Animal Report </a>
<a href="./MGMT_REPO/attraction_report.php">Attractions Report</a>
<a href="./MGMT_REPO/best_days_report.php">Best Days</a>
<a href="./MGMT_REPO/average_revenue.php">Average Revenue</a>
</nav>
<main>
<!-- Your main content goes here -->
</main>
</body>
</html>