-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (36 loc) · 1.79 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Video Component</title>
<link rel="stylesheet" href="https://cdn.brand.illinois.edu/illinois.css">
<link rel="stylesheet" href="https://dev.toolkit.illinois.edu/ilw-global/3.0.0-alpha/ilw-global.css">
<script type="module" src="/src/ilw-video.js"></script>
</head>
<body>
<main>
<div class="container" style="margin: 0 auto; padding: 0; max-width: 1200px;">
<h1>Video Component</h1>
<h2>YouTube</h2>
<h3>Standard Video or Mediaspace</h3>
<ilw-video>
<iframe width="560" height="315"
src="https://www.youtube-nocookie.com/embed/pW8cNXyAqyI?si=X9643WrgKwDm0BTw"
title="Progress isn't Quiet at Illinois" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</ilw-video>
<h3>Shorts</h3>
<div class="vertical-container">
<ilw-video aspectratio="9/16;">
<iframe width="250" height="444" src="https://www.youtube-nocookie.com/embed/6kIIFYwIU5w"
title="Cheers to the start of an #ILLINOIS summer ☀️ #summer #solstice #shorts" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</ilw-video>
</div>
</div>
</main>
</body>
</html>