presentazione-papero/index.html

51 lines
1.4 KiB
HTML
Raw Normal View History

2012-10-21 03:14:50 +02:00
<!doctype html>
<html>
2011-06-07 21:10:59 +02:00
<head>
<meta charset="utf-8">
2016-03-20 18:57:30 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
2012-10-21 03:14:50 +02:00
<title>reveal.js</title>
2012-10-21 03:14:50 +02:00
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css">
2016-03-20 18:57:30 +01:00
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/monokai.css">
2012-08-04 03:49:29 +02:00
2014-12-27 21:16:44 +01:00
<!-- Printing and PDF exports -->
<script>
2014-04-26 19:16:10 +02:00
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'dist/print/pdf.css' : 'dist/print/paper.css';
2014-04-26 19:16:10 +02:00
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
2011-06-07 21:10:59 +02:00
</head>
<body>
<div class="reveal">
<div class="slides">
2018-10-04 13:26:16 +02:00
<section>Slide 1</section>
<section>Slide 2</section>
</div>
2011-06-07 21:10:59 +02:00
</div>
2012-03-24 17:48:16 +01:00
<script src="dist/reveal.min.js"></script>
<script>
2017-01-23 11:23:45 +01:00
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
hash: true,
dependencies: [
{ src: 'plugin/markdown/marked.js' },
{ src: 'plugin/markdown/markdown.js' },
{ src: 'plugin/highlight/highlight.js' },
{ src: 'plugin/notes/notes.js', async: true }
2018-10-04 13:26:16 +02:00
]
});
2012-08-04 21:53:52 +02:00
</script>
2011-06-07 21:10:59 +02:00
</body>
</html>