-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlol.html
More file actions
32 lines (32 loc) · 893 Bytes
/
lol.html
File metadata and controls
32 lines (32 loc) · 893 Bytes
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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/assets/img/favi/regular.png" type="image/png">
<title>Polygol</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<iframe
src="https://embed-player.com/video/?source=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DdQw4w9WgXcQ&color=%23a1c2c3&preload=metadata"
title="Video player"
width="100%"
style="border-radius: 8px; border: none; aspect-ratio: 16/9; min-height: 250px;"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</body>
</html>