41 lines
629 B
HTML
41 lines
629 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>#AllYourBases</title>
|
|
<style>
|
|
@font-face {
|
|
font-family: 'Paytone One';
|
|
src: url('../../../../common/font/paytone-one-regular.ttf');
|
|
}
|
|
</style>
|
|
<style>
|
|
body {
|
|
background-color: #303030;
|
|
}
|
|
body, a {
|
|
color:white;
|
|
}
|
|
a {
|
|
text-decoration:none;
|
|
}
|
|
body {
|
|
font-family: 'Paytone One', sans-serif;
|
|
}
|
|
</style>
|
|
<style>
|
|
.meme {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<img class="meme" src="../../../../common/meme/it-is-dangerous-to-go-alone-take-one-of-these.jpeg" />
|
|
|
|
</body>
|
|
</html>
|