-
Notifications
You must be signed in to change notification settings - Fork 5
/
lecture_04_toolbar.html
48 lines (42 loc) · 1.77 KB
/
lecture_04_toolbar.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Android Toolbar</title>
<link rel="stylesheet" href="css/reveal.css"> <!--slide style-->
<link rel="stylesheet" href="css/theme/noveo.css" id="theme"> <!--noveo theme-->
<link rel="stylesheet" href="lib/css/magula.css"> <!--code highlight-->
</head>
<body>
<div id="hidden" style="display: none">
<div id="overlay">
<div id="header-left"></div>
<div id="header-right"></div>
<div id="footer-right"></div>
</div>
</div>
<div class="reveal">
<div class="slides">
<section data-background-image="css/theme/img/background_title.svg"
data-background-position="right bottom"
data-background-size="688px 660px"
class="noveo-title center">
<h1>Android Toolbar</h1>
<div class="title-separator"></div>
<h2>автор:</h2>
<p>Поляков Никита</p>
</section>
<section data-markdown="lecture/toolbar/slide/01.1__intro.md"></section>
<section data-markdown="lecture/toolbar/slide/02.1__drawer.md"></section>
<section data-markdown="lecture/toolbar/slide/03.1__coordinator.md"></section>
<section data-markdown="lecture/toolbar/slide/04.1__links.md"></section>
</div>
</div>
<script src="lib/js/head.min.js"></script> <!--HeadJS functions-->
<script src="js/reveal.js"></script> <!--RevealJS functions-->
<script src="js/config.js"></script> <!--RevealJS config-->
<script src="lib/js/jquery-3.2.1.min.js"></script>
<script src="js/printpdf.js"></script>
</body>
</html>