Initial content commit

This commit is contained in:
Fred Boniface 2022-09-08 21:47:20 +01:00
parent 430e4c43cd
commit c567ef4968
2 changed files with 89 additions and 0 deletions

60
index.css Normal file
View File

@ -0,0 +1,60 @@
h1 {
font-size: 40px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 20px;
}
footer {
width: 100%;
background-color: black;
min-height: 65px;
border-top: 1px dotted lightgrey;
position: fixed;
bottom: 0;
left: 0;
}
.footer {
font-size: 14px;
height: 10px;
}
canvas {
border: 1px solid green;
position: fixed;
}
.column {
float: left;
width: 33.33%;
}
.row:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width:1100px) {
.column {
width: 100%;
}
}
body {
background-color: black;
}
* {
color: white;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}

29
index.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Error</title>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="all" href="index.css">
</head>
<body>
<div>
<h1>Oops!</h1>
</div>
<div class="row">
<div class="column">
<p></p>
</div>
<div class="column">
<h2>There isn't anything here</h2>
<h3>You've tried to visit a website that doesn't exist</h3>
<p>You might have entered the address incorrectly or followed a bad link, check the address and try again.</p>
<p>It's also possible that you're trying to access a restricted resource from a disallowed network.</p>
</div>
</div>
<footer>
<p class="footer">From the webserver at ww1.fb-infra.uk</p>
<p class="footer">© Fred Boniface 2022</p>
</footer>
</body>
</html>