Create index.html
Browse files- index.html +39 -0
index.html
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!doctype html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 6 |
+
<title>Nulla Demo</title>
|
| 7 |
+
<style>
|
| 8 |
+
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; margin: 0; padding: 24px; }
|
| 9 |
+
.container { max-width: 1000px; margin: 0 auto; }
|
| 10 |
+
h1 { margin: 0 0 12px; }
|
| 11 |
+
a { word-break: break-word; }
|
| 12 |
+
.video-wrap { position: relative; padding-top: 56.25%; margin: 16px 0; border-radius: 12px; overflow: hidden; background: #000; }
|
| 13 |
+
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
|
| 14 |
+
.footer { margin-top: 16px; font-size: 0.95rem; }
|
| 15 |
+
</style>
|
| 16 |
+
</head>
|
| 17 |
+
<body>
|
| 18 |
+
<div class="container">
|
| 19 |
+
<h1>Nulla — Demo</h1>
|
| 20 |
+
<p>Demo video + source link 👇</p>
|
| 21 |
+
|
| 22 |
+
<div class="video-wrap">
|
| 23 |
+
<iframe
|
| 24 |
+
src="https://www.youtube-nocookie.com/embed/OAvTm5ev9Ns"
|
| 25 |
+
title="Nulla demo"
|
| 26 |
+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
| 27 |
+
allowfullscreen>
|
| 28 |
+
</iframe>
|
| 29 |
+
</div>
|
| 30 |
+
|
| 31 |
+
<p class="footer">
|
| 32 |
+
GitHub:
|
| 33 |
+
<a href="https://github.com/Tsoxer/nulla" target="_blank" rel="noopener noreferrer">
|
| 34 |
+
https://github.com/Tsoxer/nulla
|
| 35 |
+
</a>
|
| 36 |
+
</p>
|
| 37 |
+
</div>
|
| 38 |
+
</body>
|
| 39 |
+
</html>
|