46 lines
739 B
PHP
46 lines
739 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<title>404</title>
|
||
|
<style>
|
||
|
*{
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
body{
|
||
|
width: 100%;
|
||
|
}
|
||
|
.error404{
|
||
|
padding: 30px;
|
||
|
font-size: 40px;
|
||
|
color: lightseagreen;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
.backGo{
|
||
|
margin: 40px;
|
||
|
background-color: #4CAF50;
|
||
|
border: none;
|
||
|
color: white;
|
||
|
padding: 15px 32px;
|
||
|
text-align: center;
|
||
|
text-decoration: none;
|
||
|
display: inline-block;
|
||
|
font-size: 16px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
</style>
|
||
|
<body>
|
||
|
|
||
|
<div class="error404"><p>404 Pages not found</p></div>
|
||
|
|
||
|
|
||
|
<button onclick="goBack()" class="backGo">Gå tilbage</button>
|
||
|
<script>
|
||
|
function goBack() {
|
||
|
window.history.back();
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|