-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslides.html
More file actions
63 lines (59 loc) · 953 Bytes
/
slides.html
File metadata and controls
63 lines (59 loc) · 953 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
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
<html>
<head>
<meta charset="utf-8">
<style>
.page {
page-break-after: always;
border-top-style: solid;
}
.mono {
font-family: monospace;
}
#titlePage {
text-align: center;
}
h1 {
font-size: 30pt;
}
h2 {
font-size: 26pt;
}
h3 {
font-size: 20pt;
}
ul {
font-size: 24pt;
}
li {
padding-bottom: 12pt;
}
pre {
font-size: 16pt;
}
</style>
</head>
<body>
<div class="page" id="titlePage" style="padding-top:5%">
<h1>Title1</h1>
<h1>Title2</h1>
<h3>Authors</h3>
<h2>Sub-Title</h2>
<h3>Presenter: name</h3>
</div>
<div class="page">
<h1>Title</h1>
<h2>Subtitle</h2>
<ul>
<li>Important point.</li>
<ul>
<li>Fact</li>
<li>Another Fact</li>
</ul>
<li>Another <span style="font-size:35pt">important</span> point.</li>
<li>Something in <span class=mono>monospace</span></li>
<li>A reference:
<a class="mono" href="https://ietf.org/"> The IETF</a></li>
</ul>
</div>
</body>
</html>