CoolFace
Apppublic

context-course/plugin-bundle

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
index.html17 linesDownload Raw Back to root
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>plugin-bundle</title>7<style>8  html, body { margin: 0; padding: 0; width: 100%; height: 100%; background: #07080a; overflow: hidden; }9  body { display: flex; align-items: center; justify-content: center; }10  video { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; display: block; }11</style>12</head>13<body>14  <video src="plugin-bundle.mp4" autoplay muted loop playsinline></video>15</body>16</html>17