-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<title>How to Create a Telegram Bot</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);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body { font-family: 'Open Sans'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
a {
color: blue;
text-decoration: none;
}
.remark-code, .remark-inline-code {
font-family: 'Ubuntu Mono';
background-color: rgba(0, 0, 0, 0.2);
padding: 5px;
}
img[alt=getMe] { height: 270px; width: 800px }
img[alt=getUpdates] { height: 469px; width: 800px }
img[alt=TelegramLogo] { height: 25%; width: 25% }
img[alt=Botfather] { height: 40%; width: 40% }
.white { color: white }
.inverse {
background-color: #0088cc
}
.inverse h1, .inverse h2 {
color: #f3f3f3;
line-height: 0.8em;
}
</style>
</head>
<body>
<script src="js/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl: 'slide.md'
});
</script>
</body>
</html>