Guest User

Untitled

a guest
Jun 6th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>My title</title>
  6. <meta name="author" content="(Yours truly)"/>
  7. <style type="text/css">
  8. .underline { text-decoration: underline; }
  9. </style>
  10. <link rel="stylesheet" href="http://cdn.jsdelivr.net/reveal.js/3.0.0/css/reveal.css"/>
  11.  
  12. <link rel="stylesheet" href="http://cdn.jsdelivr.net/reveal.js/3.0.0/css/theme/black.css" id="theme"/>
  13.  
  14. <link rel="stylesheet" href="local.css"/>
  15. </head>
  16.  
  17. <body>
  18. <div class="reveal">
  19. <div class="slides">
  20.  
  21. <section id="sec-title-slide"><h1 class="title">My title</h1><h2 class="author">Yours truly</h2><p class="date">Created: just now</p>
  22. </section>
  23.  
  24. <section>
  25. <section id="slide-6">
  26. <p>
  27. This is left aligned
  28. </p>
  29.  
  30. <h2 id="headline6">This as well</h2>
  31. <ul>
  32. <li>this</li>
  33. <li>isn't</li>
  34. </ul>
  35. </section>
  36. </section>
  37.  
  38. </div>
  39. </div>
  40.  
  41. <script src="http://cdn.jsdelivr.net/reveal.js/3.0.0/lib/js/head.min.js"></script>
  42. <script src="http://cdn.jsdelivr.net/reveal.js/3.0.0/js/reveal.js"></script>
  43.  
  44. <script>
  45. // Full list of configuration options available here:
  46. // https://github.com/hakimel/reveal.js#configuration
  47. Reveal.initialize({
  48.  
  49. controls: true,
  50. progress: true,
  51. history: false,
  52. center: true,
  53. slideNumber: 'c',
  54. rollingLinks: true,
  55. keyboard: true,
  56. overview: true,
  57. minScale: 0.50,
  58. maxScale: 1.50,
  59.  
  60. theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
  61. transition: Reveal.getQueryHash().transition || 'none', // default/cube/page/concave/zoom/linear/fade/none
  62. transitionSpeed: 'default',
  63. multiplex: {
  64. secret: '', // null if client
  65. id: '', // id, obtained from socket.io server
  66. url: '' // Location of socket.io server
  67. },
  68.  
  69. // Optional libraries used to extend on reveal.js
  70. dependencies: [
  71. { src: 'http://cdn.jsdelivr.net/reveal.js/3.0.0/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  72. { src: 'http://cdn.jsdelivr.net/reveal.js/3.0.0/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  73. { src: 'http://cdn.jsdelivr.net/reveal.js/3.0.0/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } },
  74. { src: 'http://cdn.jsdelivr.net/reveal.js/3.0.0/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }]
  75. });
  76. </script>
  77. </body>
  78. </html>
Add Comment
Please, Sign In to add comment