diff options
author | Marvin Borner | 2019-04-01 20:16:24 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-01 20:16:24 +0200 |
commit | 83b56d1270cdb179b64a1be51f8c1e7fe586c35e (patch) | |
tree | ae40a84def05eb42c53305e0caa8c2a2440fce71 /test/examples/embedded-media.html | |
parent | 0b3e7839ebf4ed8b6c180aca0abafa28c67aee6d (diff) |
Added content
Diffstat (limited to 'test/examples/embedded-media.html')
-rw-r--r-- | test/examples/embedded-media.html | 60 |
1 files changed, 31 insertions, 29 deletions
diff --git a/test/examples/embedded-media.html b/test/examples/embedded-media.html index bbad4be..e260a83 100644 --- a/test/examples/embedded-media.html +++ b/test/examples/embedded-media.html @@ -1,49 +1,51 @@ <!doctype html> <html lang="en"> - <head> - <meta charset="utf-8"> +<head> + <meta charset="utf-8"> - <title>reveal.js - Embedded Media</title> + <title>reveal.js - Embedded Media</title> - <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> + <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" + name="viewport"> - <link rel="stylesheet" href="../../css/reveal.css"> - <link rel="stylesheet" href="../../css/theme/default.css" id="theme"> - </head> + <link href="../../css/reveal.css" rel="stylesheet"> + <link href="../../css/theme/default.css" id="theme" rel="stylesheet"> +</head> - <body> +<body> - <div class="reveal"> +<div class="reveal"> - <div class="slides"> + <div class="slides"> - <section> - <h2>Embedded Media Test</h2> - </section> + <section> + <h2>Embedded Media Test</h2> + </section> - <section> - <iframe data-autoplay width="420" height="345" src="http://www.youtube.com/embed/l3RQZ4mcr1c"></iframe> - </section> + <section> + <iframe data-autoplay height="345" src="http://www.youtube.com/embed/l3RQZ4mcr1c" + width="420"></iframe> + </section> - <section> - <h2>Empty Slide</h2> - </section> + <section> + <h2>Empty Slide</h2> + </section> - </div> + </div> - </div> +</div> - <script src="../../lib/js/head.min.js"></script> - <script src="../../js/reveal.js"></script> +<script src="../../lib/js/head.min.js"></script> +<script src="../../js/reveal.js"></script> - <script> +<script> - Reveal.initialize({ - transition: 'linear' - }); + Reveal.initialize({ + transition: 'linear' + }); - </script> +</script> - </body> +</body> </html> |