Skip to content

Commit

Permalink
added air page
Browse files Browse the repository at this point in the history
  • Loading branch information
aleatorydialogue committed Jul 8, 2024
1 parent fe45ea5 commit 25706d3
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
</div>
</div>
<a href="openai_infinigame/index.html" target="_blank">Infinigame</a>
<a href="r.html" target="_blank">aleatory.air</a>

</div>
</div>
<nav class="social-links">
Expand Down
49 changes: 49 additions & 0 deletions r.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>aleatory.air</title>
<style>
body, html {
margin: 0;
padding: 0;
overflow: hidden;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
}
#videoContainer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
video {
width: 100%;
height: 100%;
object-fit: cover;
}
#title {
position: absolute;
top: 10px;
left: 10px;
color: white;
font-family: Arial, sans-serif;
font-size: 24px;
z-index: 10;
}
</style>
</head>
<body>
<div id="videoContainer">
<video src="https://huggingface.co/aleatorydialogue/air/resolve/main/crash.mp4" autoplay muted loop></video>
</div>
<div id="title">aleatory.air</div>
</body>
</html>

0 comments on commit 25706d3

Please sign in to comment.