cleaner 404
This commit is contained in:
parent
34ffde2c2d
commit
920d30a304
6
404.css
6
404.css
|
@ -1,6 +0,0 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');
|
||||
|
||||
html {
|
||||
text-align: middle;
|
||||
font-family: 'Zen Kurenaido', sans-serif;
|
||||
}
|
36
404.html
36
404.html
|
@ -1,29 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Copyright *my code only, not the bootstrap parts* under the GNU GPL Licence. Wesley Bryie, 2021.-->
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" src="404.css">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
||||
<link href="css/fonts.css" rel="stylesheet" />
|
||||
<title>Page Not Found!</title>
|
||||
<script src="js/scripts.js"></script>
|
||||
<script src="js/domainChecker.js"></script>
|
||||
<meta name="viewport" content="width=\, initial-scale=1.0">
|
||||
<title>Whoops, something isn't right!</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<style>
|
||||
body{
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
margin: auto;
|
||||
width: 50%;
|
||||
padding: 10px;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<h1>Not Found!</h1>
|
||||
<p>Please go back. OR <a href="https://wesbryie.cf/">Go Home</a></p>
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HTWD2BNXJ6"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'G-HTWD2BNXJ6');
|
||||
</script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
||||
<h1 id="big">Whoops, something isn't right!</h1>
|
||||
<br>
|
||||
<h5>Please look at your link, or go to the <a href="/">homepage.</a></h5>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue