-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 1.45 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>Tips & Tricks</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="webfonts/ostrich-sans.css" />
<style type="text/css">
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Ostrich Sans';
font-weight: 900;
margin: 22px 0;
}
.remark-code, .remark-inline-code {
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
}
.fleft {
float: left;
margin-right: 10px;
}
.fright {
float: right;
width: 375px;
}
.w10 img {
width: 10%;
}
.w20 img {
width: 20%;
}
.w30 img {
width: 30%;
}
.w40 img {
width: 40%;
}
.w50 img {
width: 50%;
}
.w60 img {
width: 60%;
}
.w70 img {
width: 70%;
}
.w80 img {
width: 80%;
}
.w90 img {
width: 90%;
}
.vtop {
vertical-align: top;
}
</style>
</head>
<body>
<script src="remark.min.js" type="text/javascript"></script>
<script type="text/javascript">
var slideshow = remark.create({
sourceUrl: "presentation.md",
ratio: "16:9",
highlightLanguage: "php",
highlightStyle: "tomorrow-night-eighties",
countIncrementalSlides: false
});
</script>
</body>
</html>