Skip to content

Instantly share code, notes, and snippets.

@dnordstrom
Created January 15, 2014 23:38
Show Gist options
  • Save dnordstrom/8446953 to your computer and use it in GitHub Desktop.
Save dnordstrom/8446953 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Presentation</title>
<meta name="description" content="Please, tell me a story.">
<meta name="author" content="Mr. Myself">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--
- Lots and lots of CSS will be here.
-->
</head>
<body>
<!--
- Slide #1
-->
<section class="slide" id="slide-1">
<div>
<h1>
<!--
- This is the heading (for slide one).
-->
Hello fellas
</h1>
<!--
- This is the body text (for slide one).
-
- Edit the text between <p> and </p> as you wish. To add a new
- parapgragh, add another pair of <p> and </p> below this one.
-->
<p>
We are the best, really. We're super. Awesome, that is.
</p>
</div>
</section>
<!--
- Slide #2
-->
<section class="slide" id="slide-2">
<div>
<p>
<!--
- This is the body text for slide #2.
- If there will only be one paragraph, I'll put the comment
- here, no need to worry about <p> tags---just edit the text.
-->
We do a bit of this and that.
</p>
</div>
</section>
<script>
// Lots and lots of JavaScript will be here.
new Presentation()
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment