47 lines
949 B
HTML
47 lines
949 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>I EAT ROCKS</title>
|
||
|
|
||
|
<style>
|
||
|
* {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
width:100lvw;
|
||
|
height:100lvh;
|
||
|
padding:0;
|
||
|
margin:0;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
position:absolute;
|
||
|
top:2px;
|
||
|
z-index: 1;
|
||
|
left:2px;
|
||
|
color:white;
|
||
|
text-shadow: 2px 2px 4px black;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
position:absolute;
|
||
|
top:20px;
|
||
|
z-index: 1;
|
||
|
left:2px;
|
||
|
color:white;
|
||
|
text-shadow: 2px 2px 4px black;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<img src="rock.jpg" />
|
||
|
<a href="https://directory.possiblyaxolotl.com">Directory</a>
|
||
|
<p>coming soon</p>
|
||
|
</body>
|
||
|
</html>
|