1
0
Fork 0
why-cant-we-deploy-today/examples/barebones.html

34 lines
791 B
HTML
Raw Normal View History

2023-05-23 19:50:14 +02:00
<!DOCTYPE html>
2013-06-30 03:48:56 +02:00
<html lang="en">
2023-05-23 19:50:14 +02:00
<head>
<meta charset="utf-8" />
<title>reveal.js - Barebones</title>
<link rel="stylesheet" href="../dist/reveal.css" />
</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>
2013-06-30 03:48:56 +02:00
2023-05-23 19:50:14 +02:00
<section>
<h2>No Theme</h2>
<p>
There's no theme included, so it will fall back on browser defaults.
</p>
</section>
</div>
</div>
2013-06-30 03:48:56 +02:00
2023-05-23 19:50:14 +02:00
<script src="../dist/reveal.js"></script>
<script>
Reveal.initialize();
</script>
</body>
2013-06-30 03:48:56 +02:00
</html>