Spaces:
Running
Running
File size: 615 Bytes
a81f515 1f3a178 a81f515 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>The Agent Loop</title>
<style>
html, body {
margin: 0; padding: 0;
width: 100%; height: 100%;
background: #07080a;
overflow: hidden;
}
body {
display: flex; align-items: center; justify-content: center;
}
video {
width: 100%; height: 100%;
max-width: 100%; max-height: 100%;
object-fit: contain;
display: block;
}
</style>
</head>
<body>
<video src="agent-loop.mp4" autoplay muted loop playsinline></video>
</body>
</html>
|