Skip to content

Commit 7f1bea4

Browse files
committed
the big rewrite test
1 parent c7857bd commit 7f1bea4

File tree

1 file changed

+41
-81
lines changed

1 file changed

+41
-81
lines changed

404.html

Lines changed: 41 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,51 @@
11
<!DOCTYPE html>
22
<html>
3-
<head>
4-
<title>404 Error</title>
5-
<meta http-equiv="content-type" content="text/html; charset=utf-8" >
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<style type="text/css">
8-
body {
9-
background-color: #0f0f0f;
10-
}
11-
12-
body, h1, p {
13-
font-family: "Montserrat", sans-serif;
14-
color: #FFFFFF;
15-
font-weight: normal;
16-
margin: 0;
17-
padding: 0;
18-
text-align: center;
19-
}
20-
21-
.container {
22-
margin-left: auto;
23-
margin-right: auto;
24-
margin-top: 177px;
25-
max-width: 1170px;
26-
padding-right: 15px;
27-
padding-left: 15px;
28-
}
29-
30-
.row:before, .row:after {
31-
display: table;
32-
content: " ";
33-
}
34-
35-
.col-md-6 {
36-
width: 50%;
37-
}
38-
39-
.col-md-push-3 {
40-
margin-left: 25%;
41-
}
42-
43-
h1 {
44-
font-size: 48px;
45-
font-weight: 800;
46-
margin: 0 0 20px 0;
47-
}
48-
49-
.lead {
50-
font-size: 21px;
51-
font-weight: 200;
52-
margin-bottom: 20px;
53-
}
54-
55-
p {
56-
margin: 0 0 10px;
57-
}
58-
img{
59-
width:250px;
60-
height:250px ;
61-
62-
}
3+
<head>
4+
<!-- Responsiveness -->
5+
<meta charset="UTF8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
8+
<!-- Page Title -->
9+
<title>Crevolution - 404</title>
10+
11+
<!-- Link Assets & CSS -->
12+
<link rel="icon" href="/assets/img/logos/watermark.svg" type="image/png" sizes="16x16" />
13+
<link rel="stylesheet" href="/css/bootstrap.css">
14+
<link href="/css/index.css" rel="stylesheet" type="text/css" />
15+
<link rel="preconnect" href="https://fonts.googleapis.com">
16+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
17+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap">
18+
</head>
19+
<body>
6320

64-
a {
65-
color: #3282e6;
66-
text-decoration: none;
67-
}
68-
</style>
69-
<link rel="preconnect" href="https://fonts.googleapis.com">
70-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
71-
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
72-
</head>
21+
<!-- Link JS -->
22+
<script src="/js/bootstrap.js"></script>
23+
<script src="/js/jquery.js"></script>
7324

74-
<body>
75-
<div class="container text-center" id="error">
76-
<img src="assets/img/CrevoSmall.svg">
77-
<div class="row">
78-
<div class="col-md-12">
79-
<div class="main-icon text-warning"><span class="uxicon uxicon-alert"></span></div>
80-
<h1>Page not found (404 error)</h1>
81-
</div>
25+
<!-- Navbar located in /assets/nav.html -->
26+
<div id="nav-placeholder">
8227
</div>
83-
<div class="row">
84-
<div class="col-md-6 col-md-push-3">
85-
<p class="lead">We do not know how you got here but, please click <a href="index.html">here</a> to go home.</p>
28+
<script>
29+
$(function(){
30+
$("#nav-placeholder").load("assets/nav.html");
31+
});
32+
</script>
33+
<div class="jbo"> </div>
34+
<div id="f404-tc" class="jb t-card">
35+
<div class="blktcbk">
36+
<h1 class="title">404</h1>
37+
</div>
8638
</div>
39+
<h1 class="heading">The page you were looking for is not here.</h1>
40+
<h2 class="txtc">Check the url or use the menu to choose a page.</h2>
41+
<!-- Footer located in /assets/ftr.html -->
42+
<div id="ftr-placeholder">
8743
</div>
88-
</div>
44+
<script>
45+
$(function(){
46+
$("#ftr-placeholder").load("assets/ftr.html");
47+
});
48+
</script>
8949

9050
</body>
9151
</html>

0 commit comments

Comments
 (0)