-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Hotel Management</title>
</head>
<body>
<div class="navbar">
<ul class="navbar-l">
<li class="brand"><a href="/index.html">Hotel</a></li>
<li class="navbar-el">
<span class="el">Bookings ▾</span>
<ul class="dropdown-content">
<li class="dp-ci"><a href="/bookings/new.html">New Booking</a></li>
<li class="dp-ci"><a href="/bookings/list.html">Bookings</a></li>
</ul>
</li>
<li class="navbar-el">
<span class="el">Hotels ▾</span>
<ul class="dropdown-content">
<li class="dp-ci"><a href="/hotels/new.html">New Hotel</a></li>
<li class="dp-ci"><a href="/hotels/list.html">Hotels</a></li>
</ul>
</li>
<li class="navbar-el">
<span class="el">Rooms ▾</span>
<ul class="dropdown-content">
<li class="dp-ci"><a href="/rooms/new.html">New Room</a></li>
<li class="dp-ci"><a href="/rooms/list.html">Rooms</a></li>
</ul>
</li>
<li class="navbar-el">
<span class="el">Guests ▾</span>
<ul class="dropdown-content">
<li class="dp-ci"><a href="/guests/new.html">New Guest</a></li>
<li class="dp-ci"><a href="/guests/list.html">Guests</a></li>
</ul>
</li>
<li class="navbar-el">
<span class="el">Room Types ▾</span>
<ul class="dropdown-content">
<li class="dp-ci"><a href="/roomtypes/new.html">New Room Type</a></li>
<li class="dp-ci"><a href="/roomtypes/list.html">Room Types</a></li>
</ul>
</li>
<li class="navbar-el">
<span class="el">Reports ▾</span>
<ul class="dropdown-content">
<li class="dp-ci">Test6</li>
<li class="dp-ci">Test6</li>
</ul>
</li>
</ul>
</div>
<div class="content-area">
<h1>Test</h1>
</div>
</body>
</html>