-
Notifications
You must be signed in to change notification settings - Fork 1
/
error.html
122 lines (120 loc) · 3.98 KB
/
error.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Custom made favicon, using the sourced COVID image. -->
<link
rel="icon"
type="image/png"
href="http://covidtracking-us.com/view/covid-logo-assets/covid-logo-virus-favicon.png"
/>
<title>404 Error</title>
<!-- Link to Bulma, which is used throughout all of our HTML -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.8.2/css/bulma.min.css"
/>
<!-- Link to our CSS stylesheet. -->
<link
rel="stylesheet"
href="http://covidtracking-us.com/css/style.css"
/>
<style>
html, body {
height: 100%;
margin: 0;
}
</style>
</head>
<body>
<!-- Bulma navbar, incorporating a custom small page logo. -->
<nav class="navbar" role="navigation" aria-label="main navigation">
<nav class="navbar-brand">
<nav class="navbar-item">
<!-- Custom small page logo. -->
<img
src="http://covidtracking-us.com/view/covid-logo-assets/covid-logo-branch-header.png"
alt="US COVID-19 tracker."
/>
</nav>
<!-- Navbar burger, for use on mobile and smaller screens. -->
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</nav>
<!-- Left-aligned navbar elements, all of which link to their specified html page. -->
<nav id="navbarBasicExample" class="navbar-menu">
<nav class="navbar-end">
<!-- Link to index.html/Home page. -->
<a class="navbar-item" href="http://covidtracking-us.com/index.html">
<p class="navbar-text">
Home
</p>
</a>
<!-- Link to map.html/Map page. -->
<a class="navbar-item" href="http://covidtracking-us.com/view/map.html">
<p class="navbar-text">
Map
</p>
</a>
<!-- Link to chart.html/Chart/Graph page. -->
<a class="navbar-item" href="http://covidtracking-us.com/view/chart.html">
<p class="navbar-text">
Chart/Graph
</p>
</a>
<!-- Link to stats.html/Statistics page. -->
<a class="navbar-item" href="http://covidtracking-us.com/view/stats.html">
<p class="navbar-text">
Statistics
</p>
</a>
</nav>
</nav>
</nav>
<main class="frontPage-error">
<section class="section-error">
<figure class="container">
<section class="columns">
<section class="column">
<br/>
<br/>
<section class="content-box-error">
<section class="state-selector">
<header class="background-error">
<!-- Custom directions logo. -->
<figure class="image center">
<img
src="http://covidtracking-us.com/view/covid-logo-assets/covid-logo-404.png"
alt="404 Error."
/>
</figure>
</header>
</section>
</section>
</section>
</section>
</figure>
</section>
</main>
<footer>
<section class="content has-text-centered">
<p>
COVID-19 Data Tracker 2020 DW/SH
</p>
</section>
</footer>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js">
</script>
<script>
$(".navbar-burger").on("click", () => {
$(".navbar-burger").toggleClass("is-active");
$(".navbar-menu").toggleClass("is-active");
});
</script>
</body>
</html>