surf/site.html
2022-05-01 22:17:36 -05:00

42 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background: black;
}
iframe {
margin: 0 auto;
display: block;
box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
max-width: 100%;
}
p {
text-align: center;
font-style: italic;
color: #ff5353;
}
a {
display: block;
width: fit-content;
margin: 2rem auto;
font-size: 2rem;
color: white;
text-transform: lowercase;
text-decoration: none;
font-style: italic;
text-align: center;
text-shadow: 0 0 8px white;
}
</style>
<title>surf</title>
</head>
<body>
<a href="/">surf</a>
<p>View unseen YouTube videos. Content may be NSFW: videos are found at random by an algorithm.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/{{VIDEO_ID_HERE}}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</body>
</html>