33 lines
848 B
HTML
33 lines
848 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Plain HTML is good</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="shortcut icon" href="favicon.png"/>
|
|
<link rel="stylesheet" href="style.css"/>
|
|
</head>
|
|
<body>
|
|
<div align="center">
|
|
<h1>404 Not Found</h1>
|
|
<em>
|
|
You may ask yourself:
|
|
<strong>
|
|
well, how did I get here?
|
|
</strong>
|
|
</em>
|
|
<br/>
|
|
<small>
|
|
<small>
|
|
By a bad link, probably
|
|
</small>
|
|
</small>
|
|
<br/>
|
|
<br/>
|
|
<a href="https://samtherapy.net">Go back home</a>
|
|
</div>
|
|
</body>
|
|
|
|
|
|
</html>
|