45 lines
745 B
HTML
45 lines
745 B
HTML
<!DOCTYPE html5>
|
|
<html>
|
|
<head>
|
|
<title>voussoir.net</title>
|
|
<link rel="shortcut icon" href="favicon.png" type="image/png"/>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
<style>
|
|
*
|
|
{
|
|
color: #efcc2b;
|
|
}
|
|
body
|
|
{
|
|
background-color: #0e0e0d;
|
|
}
|
|
#content_body
|
|
{
|
|
display: flex;
|
|
align-content: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
overflow-x: hidden !important;
|
|
}
|
|
span
|
|
{
|
|
align-self: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<div id="content_body">
|
|
<span>Ethan Dalool</span>
|
|
<span><a href="https://github.com/voussoir">GitHub</a></span>
|
|
</div>
|
|
</body>
|
|
|
|
|
|
<script type="text/javascript">
|
|
</script>
|
|
</html>
|