-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.16 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Agency Homepage</title>
<link rel="stylesheet" href="css/home.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Packages</a></li>
<li><a href="#">Data</a></li>
<li><a href="#">Promotions</a></li>
</ul>
</nav>
</header>
<main>
<section id="admin-actions">
<h2>Admin Actions</h2>
<ul>
<li><a href="new-packages.html">New Packages</a></li>
<li><a href="new-section.html">Edit Packages</a></li>
<li><a href="#">Create Promotion</a></li>
</ul>
</section>
<section id="recent-packages">
<h2>Recent Packages</h2>
<div class="package-list">
</div>
</section>
</main>
<footer>
</footer>
<script src="js/script.js"></script>
</body>
</html>