-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.36 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
<!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="modern-normalize.css">
<link rel="stylesheet" type="text/css" href="style.css">
<title>404 - Page not found</title>
</head>
<body>
<header class="red navbar">
<h2 class="white">Zenith Casino and Resort</h2>
<nav class="white">
<span id="nav-links">
<a href="#">Home</a>
<a href="#">Casino</a>
<a href="#">Dining</a>
<a href="#">Hotel</a>
<a href="#">Events</a>
<a href="#">Rewards</a>
</span>
<span id="nav-button">
<a class="button desktop" href="#">Book a Room</a>
</span>
</nav>
</header>
<div class="content yellow">
<img src="slotmachine.png" alt="Slot machine">
<div id="text">
<h1>Uh-oh!</h1>
<h3>We couldn’t find that page!</h3>
<p>Don’t worry though. You can recover your winnings!</p>
<a class="red button" href="#">← Return to the homepage</a>
</div>
</div>
<footer class="red">
<p class="white">Copyright © 2023 Zenith Casino and Resort</p>
</footer>
</body>
</html>