38 lines
No EOL
894 B
HTML
38 lines
No EOL
894 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>sawyer.systems</title>
|
|
<style>
|
|
body {
|
|
background-color: #131313;
|
|
font-family: sans-serif;
|
|
color: #f1f1f1;
|
|
max-width:100%;
|
|
margin: 0;
|
|
}
|
|
|
|
video {
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.horizontal-center {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="horizontal-center">
|
|
<video id="video" autoplay controls loop playsinline>
|
|
<source src="If_You_See_Me_Out_In_Quahog_(Remastered)_-_Lasica.webm" type="video/webm">
|
|
</video>
|
|
<script src="script.js"></script>
|
|
<p>check the page title ;)</p>
|
|
</div>
|
|
</body>
|
|
</html> |