forked from bernardoVale/python-for-devops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 932 Bytes
/
Copy pathindex.html
File metadata and controls
38 lines (35 loc) · 932 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
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>Python for DevOps</title>
<meta charset="utf-8">
<style>
@import url(http://localhost:8000/assets/fonts/yanone.css);
@import url(http://localhost:8000/assets/fonts/droid.css);
@import url(http://localhost:8000/assets/fonts/ubuntu.css);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
important {
background-color: red;
font-size: 20pt;
}
.fit-image {
background-size: contain;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
</style>
</head>
<body>
<script src="http://localhost:8000/assets/js/remark.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl: 'markdown.md',
highlightLines: 'true',
});
</script>
</body>
</html>