-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslide1.html
37 lines (36 loc) · 1.27 KB
/
slide1.html
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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta charset="utf-8">
<style>
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
li { line-height: 1.4em; margin-bottom: 1.4em; }
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
.remark-code { font-size: 1em; line-height: 1.4em; }
.remark-inline-code { background-color: rgba(255, 255, 0, 0.5); display: inline-block; padding: 5px; }
blockquote { background-color: beige; font-style: italic; padding: 10px; }
.emoji { font-size: 3em; }
.big { font-size: 5em; }
</style>
</head>
<body>
<script src="https://gnab.github.io/remark/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create({
highlightLines: true,
countIncrementalSlides: false,
highlightStyle: 'github',
sourceUrl: 'slides.md'
});
</script>
</body>
</html>