forked from weatherranch/streaming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnot_found.html
More file actions
29 lines (29 loc) · 1.39 KB
/
not_found.html
File metadata and controls
29 lines (29 loc) · 1.39 KB
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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="manifest" href="/manifest/root.json"/>
<head>
<link rel="stylesheet" href="css/root.css">
<link rel="stylesheet" href="css/buttons.css">
<style>
.main {
text-align: left;
}
</style>
</head>
<body>
<header>
<nav class="nav-links">
<a href="/" class="nav-logo"><img class="headerlogo" alt="Weather Ranch Logo" src="/img/logo.svg"></a>
<a href="/home" class="header-link header-active"><img class="nav-icon" alt="Home button" src="/assets/icons/home_active.svg"><button class="header-btn">Home</button></a>
<a href="/guide" class="header-link"><img class="nav-icon" alt="Guide Button" src="/assets/icons/guide.svg"><button class="header-btn">Guide</button></a>
<a href="/radio" class="header-link roaid"><img class="nav-icon" src="/assets/icons/radio.svg"><button class="header-btn">Radio</button></a>
<a href="/about" class="header-link"><img class="nav-icon" alt="About page" src="/assets/icons/info.svg"><button class="header-btn">About</button></a>
</nav>
</header>
<div class="main">
<h2>Page Not Found :c</h2>
<a href="/">Go Home</a>
</div>
</body>
</html>