-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation.html
More file actions
30 lines (30 loc) · 920 Bytes
/
Copy pathpresentation.html
File metadata and controls
30 lines (30 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<head>
<title>ECS Boilerplate - Presentation w/ jQuery</title>
<script src="js/jquery-3.2.0.js"></script>
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/white.css">
<script>
//Your code goes here for the header, if you want it
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<p>Example Slide</p>
<p>by Noah Walker (ECS Boilerplate Project)</p>
</section>
<section>
<h1>Technology used</h1>
<p>Reveal.js and Noah Walker's ECS Presentation Boilerplate</p>
</section>
</div>
</div>
<script src="js/reveal.min.js"></script>
<script>
Reveal.initialize();
//put any other post-initialization code here
</script>
</body>
</html>