48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Coming Soon</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@800;900&display=swap" rel="stylesheet">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #0f0f0f;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.video-container {
|
|
width: 100%;
|
|
max-width: 960px;
|
|
padding: 1rem;
|
|
}
|
|
|
|
video {
|
|
width: 100%;
|
|
height: auto;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 40px rgba(0,0,0,0.6);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="video-container">
|
|
<video controls autoplay loop muted playsinline>
|
|
<source src="Whiplash%20doggo%20edition%20%23memes%20%20%23shorts.mp4" type="video/mp4">
|
|
</video>
|
|
</div>
|
|
</body>
|
|
</html>
|