fa20-bt/test/examples/barebones.html

42 lines
678 B
HTML
Raw Normal View History

2013-06-30 01:48:56 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>reveal.js - Barebones</title>
2014-04-06 08:09:25 +00:00
<link rel="stylesheet" href="../../css/reveal.css">
2013-06-30 01:48:56 +00:00
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Barebones Presentation</h2>
<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>
</section>
<section>
<h2>No Theme</h2>
<p>There's no theme included, so it will fall back on browser defaults.</p>
</section>
</div>
</div>
2014-04-06 08:09:25 +00:00
<script src="../../js/reveal.js"></script>
2013-06-30 01:48:56 +00:00
<script>
Reveal.initialize();
</script>
</body>
</html>