Created
January 15, 2014 23:38
-
-
Save dnordstrom/8446953 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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