55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="sv">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Error Sökväg</title>
|
||
|
<style>
|
||
|
html{
|
||
|
font-size: 100%;
|
||
|
}
|
||
|
|
||
|
@media only screen and (max-width: 800px){
|
||
|
html{
|
||
|
font-size: 80%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media only screen and (max-width: 400px){
|
||
|
html{
|
||
|
font-size: 50%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
div{
|
||
|
position: relative;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
width: fit-contet;
|
||
|
font-family: Roboto, sans-serif;
|
||
|
font-size: 10rem;
|
||
|
display: block;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
h1 span{
|
||
|
font-size: 6.5rem;
|
||
|
}
|
||
|
|
||
|
h2{
|
||
|
font-family: Roboto, sans-serif;
|
||
|
font-size: 4rem;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<h1>404 <span>Error</span></h1>
|
||
|
<h2>Felaktig sökväg</h2>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|