presentations

Presentations
Log | Files | Refs

barebones.html (678B)


      1 <!doctype html>
      2 <html lang="en">
      3 
      4 	<head>
      5 		<meta charset="utf-8">
      6 
      7 		<title>reveal.js - Barebones</title>
      8 
      9 		<link rel="stylesheet" href="../../css/reveal.css">
     10 	</head>
     11 
     12 	<body>
     13 
     14 		<div class="reveal">
     15 
     16 			<div class="slides">
     17 
     18 				<section>
     19 					<h2>Barebones Presentation</h2>
     20 					<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>
     21 				</section>
     22 
     23 				<section>
     24 					<h2>No Theme</h2>
     25 					<p>There's no theme included, so it will fall back on browser defaults.</p>
     26 				</section>
     27 
     28 			</div>
     29 
     30 		</div>
     31 
     32 		<script src="../../js/reveal.js"></script>
     33 
     34 		<script>
     35 
     36 			Reveal.initialize();
     37 
     38 		</script>
     39 
     40 	</body>
     41 </html>