-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
101 lines (91 loc) · 3.03 KB
/
404.html
File metadata and controls
101 lines (91 loc) · 3.03 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
<!DOCTYPE html>
<html>
<head>
<title>www.binpipe.org : Free Courses & Learning Content</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Free Courses and Learning Videos for DevOps, SRE, Machine Learning, AI, Linux, Solutions Engineering & Technical Program Managers">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body {
background-color: #26292E;
color: #2E2F30;
font-family: sans-serif;
margin: 0;
}
footer {
position: absolute;
bottom: 1%;
width: 100%;
text-align: center;
font-size: .6em;
color: #fff
}
a {
color: #fff;
}
a:hover {
color: #e74c3c;
}
.dialog {
float:right;
text-align: left;
width: 60%;
margin: 5% auto 0;
}
h1 {
font-size: 4em;
color: #fff;
line-height: 1em;
}
p {
font-size: 1.4em;
color: #fff;
padding-right: 5%;
}
.image {
position: absolute;
float: left;
top: 0;
width:60%;
}
@media only screen and (max-width: 767px) {
.image {
width: 100%;
top: -50px;
}
.dialog {
float:none;
text-align: center;
width: 90%;
margin-top: 70%
}
}
</style>
</head>
<body>
<!-- This file lives in public/404.html -->
<img src="light-bulb.png" class="image">
<div>
<div class="dialog">
<h1>Hey, who turned off the lights?</h1>
<p>We were unable to find the page you were looking for.</p>
<p>Use the below pointers to navigate:</p>
<hr>
<a href="https://binpipe.org"><img src="https://img.shields.io/badge/--green" alt="Website_Homepage"></a>
<a href="https://www.youtube.com/channel/UCPTgt4Wo0MAnuzNEEZlk90A?sub_confirmation=1"><img src="https://img.shields.io/badge/BINPIPE-YouTube-red" alt="YouTube_Channel"></a>
<a href="https://github.com/BINPIPE/resources/blob/master/devops-lesson-plans.md"><img src="https://img.shields.io/badge/BINPIPE-Learning_Resources-orange" alt="Learning"></a>
<a href="https://binpipe.org"><img src="https://img.shields.io/badge/BINPIPE-Website_Homepage-green" alt="Website_Homepage"></a>
<br>
<a href="https://blog.binpipe.org"><img src="https://img.shields.io/badge/--blue" alt="Blogs_and_Tutorials"></a>
<a href="https://blog.binpipe.org"><img src="https://img.shields.io/badge/BINPIPE-Blogs_and_Tutorials-blue" alt="Blogs_and_Tutorials"></a>
<a href="https://forms.gle/tDJxDyj2nJyfsgsk7"><img src="https://img.shields.io/badge/BINPIPE-Live_Sessions-yellow" alt="Sessions"></a>
<a href="https://guitar.binpipe.org"><img src="https://img.shields.io/badge/BINPIPE-Guitar_Notes-pink" alt="Guitar"></a>
<a href="https://www.linkedin.com/in/prasanjit-singh"><img src="https://img.shields.io/badge/BINPIPE-Prasanjit_Singh-cyan" alt="Prasanjit_Singh"></a>
<hr>
</div>
</div>
</body>
<footer><a href="https://www.binpipe.org" target="_blank">www.binpipe.org</a></footer>
</html>