-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
122 lines (121 loc) · 3.85 KB
/
404.html
File metadata and controls
122 lines (121 loc) · 3.85 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
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" />
<meta
name="description"
content="CodeSect is a collaborative learning platform for developers and designers to effectively improve their programming knowledge and skills."
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-154847338-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-154847338-1');
</script>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png?v=20200416"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png?v=20200416"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png?v=20200416"
/>
<link rel="manifest" href="/site.webmanifest?v=20200416" />
<link
rel="mask-icon"
href="/safari-pinned-tab.svg?v=20200416"
color="#f8cf4d"
/>
<link rel="shortcut icon" href="/favicon.ico?v=20200416" />
<meta name="apple-mobile-web-app-title" content="CodeSect" />
<meta name="application-name" content="CodeSect" />
<meta name="msapplication-TileColor" content="#f8cf4d" />
<meta name="theme-color" content="#f8cf4d" />
<title>
Page Cannot Be Found on CodeSect | Learn, Build, Deploy, Share
</title>
<link
href="https://fonts.googleapis.com/css?family=Libre+Franklin:300,400,600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css?v=20200416" />
</head>
<body>
<a href="#content" class="skip-to-main">Skip to main content</a>
<header class="site-header">
<nav class="navbar wrapper" role="navigation">
<a class="navbar__link" href="/">
<img
alt="CodeSect - Home"
class="navbar__logo"
src="/logo.svg"
width="48"
/>
</a>
<button class="menu__button" id="toggle-menu" aria-expanded="false">
Menu
</button>
<ul class="menu" id="menu">
<li class="menu__item"><a class="menu__link" href="/">Home</a></li>
<li class="menu__item">
<a class="menu__link" href="/projects">Projects</a>
</li>
<li class="menu__item">
<a class="menu__link" href="/sign-in">Sign In</a>
</li>
<li class="menu__item">
<a class="menu__link menu__link--start" href="/invite"
>Get Started</a
>
</li>
</ul>
</nav>
</header>
<main id="content" tabindex="-1">
<div class="wrapper wrapper--center page-404">
<h1 class="page-404__title">Oops!</h1>
<div class="page-404__description">404 | Page cannot be found</div>
<a href="/">Back to home</a>
</div>
</main>
<footer class="site-footer">
<div class="wrapper wrapper--footer">
<ul class="footer-menu">
<li class="footer-menu__item">
<a class="footer-menu__link" href="/faq">FAQ</a>
</li>
<li class="footer-menu__item">
<a class="footer-menu__link" href="/terms">Terms</a>
</li>
<li class="footer-menu__item">
<a class="footer-menu__link" href="/privacy">Privacy Policy</a>
</li>
<li class="footer-menu__item">
<a class="footer-menu__link" href="/code-of-conduct"
>Code of Conduct</a
>
</li>
</ul>
<p class="credits">© 2020 CodeSect</p>
</div>
</footer>
<script src="/main.js"></script>
</body>
</html>