-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
51 lines (45 loc) · 1.93 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
<!doctype html>
<html lang="en-us">
<head>
<title>404 Page not found - Google Net Browse Helper</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://nodessl.com/css/bootstrap.css">
<link rel="stylesheet" href="https://nodessl.com/css/custom.css">
</head>
<body>
<main id="main">
<div class="d-flex flex-column justify-content-center bg-skew bg-skew-light overflow-hidden">
<div class="container">
<div class="row justify-content-lg-center text-center">
<div class="col-lg-8">
<h1 class="display-4 mb-5 mt-5">Page not found</h1>
<p class="lead mb-5">The page you are looking for does not exist.</p>
<a href="https://nodessl.com/" class="btn btn-primary rounded-pill">Go to home page</a>
</div>
</div>
</div>
</div>
</main>
<footer class="site-footer mt-5">
<div class="container">
<div class="row justify-content-md-between">
<div class="col-sm-12 col-md-4 mb-4">
</div>
<div class="col-4 col-md-2 mb-4">
<ul class="nav flex-column">
<li class="mb-1"><a href="https://nodessl.com/" class="text-secondary">返回首页</a></li>
</ul>
</div>
</div>
<hr/>
<div class="d-flex flex-column justify-content-sm-between align-items-center">
<div class="text-muted mb-3">
©2021 Nodessl
</div>
</div>
</div>
</footer>
</body>
</html>