forked from heiseonline/embetty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.html
45 lines (38 loc) · 1.66 KB
/
video.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
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<title>embetty</title>
<link href="app.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.9.0/themes/prism.min.css" rel="stylesheet" />
<meta data-embetty-server=".">
<script async src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.9.0/prism.min.js"></script>
<script async src="embetty.js"></script>
</head>
<body>
<header>
<h1>embetty</h1>
<h2>Basic usage</h2>
</header>
<main>
<h3>YouTube</h3>
<article>
<embetty-video type="youtube" start-at="97" video-id="m6UOo2YGbIE"></embetty-video>
<pre><code class="language-html"><embetty-video video-id="m6UOo2YGbIE" start-at="97" type="youtube"></embetty-video></code></pre>
</article>
<article>
<embetty-video height=100 type="youtube" video-id="3L4fHrIJ3A4"></embetty-video>
<pre><code class="language-html"><embetty-video video-id="3L4fHrIJ3A4" type="youtube"></embetty-video></code></pre>
</article>
<h3>Vimeo</h3>
<article>
<embetty-video type="vimeo" start-at="97" video-id="1084537"></embetty-video>
<pre><code class="language-html"><embetty-video video-id="1084537" start-at="97" type="vimeo"></embetty-video></code></pre>
</article>
<h3>Facebook</h3>
<article>
<embetty-video type="facebook" video-id="10156049485672318"></embetty-video>
<pre><code class="language-html"><embetty-video video-id="10156049485672318" type="facebook"></embetty-video></code></pre>
</article>
</main>
</body>
</html>