pages/index.html

23 lines
334 B
HTML
Executable File

<html>
<head>
<title>horse go brrrrrr</title>
<style>
.center {
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
}
* {
background: black;
}
</style>
</head>
<body>
<div class="center">
<img src="http://emergency.horse/horse.gif">
</div>
</body>
</html>