-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
59 lines (56 loc) · 1.96 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - InnerTube API Docs</title>
<link rel="stylesheet" href="/css/core.css">
</head>
<body>
<div id="root">
<div id="header">
<a href="/" id="logo">
<span class="logo-icon sprite"></span>
<div class="logo-text-container">
<div class="logo-title">InnerTube API Docs</div>
<div class="logo-subtitle">Docs for YouTube's internal API</div>
</div>
</a>
<div class="tab-bar">
<a href="/" class="tab-item">
<span class="tab-label">API</span>
</a>
<a href="/glossary" class="tab-item">
<span class="tab-label">Glossary</span>
</a>
</div>
</div>
<div id="content">
<div id="main">
<h1>404</h1>
<p>That page doesn't exist</p>
<a href="#" onclick="history.back()">Go back</a>
</div>
<style>
#main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#main h1 {
font-size: 96px;
}
#main p,
#main a {
font-size: 20px;
}
#main p {
color: var(--txt-sec);
}
</style>
</div>
</div>
</body>
</html>