-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
59 lines (59 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ITLab slides</title>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #333;
background-color: #f9f9f9;
margin: 20px;
padding: 20px;
}
h1 {
font-size: 2em;
margin-bottom: 0.5em;
color: #333;
}
ol {
list-style-type: decimal;
margin-left: 40px;
}
li {
font-size: 1.2em;
margin-bottom: 0.5em;
}
a {
color: #4183c4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Orderedlist theme-inspired header */
header {
background-color: #4183c4;
padding: 10px 0;
color: white;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>ITLab slides</h1>
</header>
<ul>
<li><a href="https://embedded-dev-research.github.io/itlab_slides/slides/00-intro.pdf" target="_blank">00: Introduction</a></li>
<li><a href="https://embedded-dev-research.github.io/itlab_slides/slides/01-git.pdf" target="_blank">01: Git</a></li>
<li><a href="https://embedded-dev-research.github.io/itlab_slides/slides/02-cmake.pdf" target="_blank">02: CMake</a></li>
<li><a href="https://embedded-dev-research.github.io/itlab_slides/slides/03-linux.pdf" target="_blank">03: Linux</a></li>
<li><a href="https://embedded-dev-research.github.io/itlab_slides/slides/04-cpp-project-structure.pdf" target="_blank">04: C++ project structure</a></li>
<li><a href="https://embedded-dev-research.github.io/itlab_slides/slides/05-embedded-arm.pdf" target="_blank">05: Embedded architectures (ARM)</a></li>
<li><a href="https://embedded-dev-research.github.io/itlab_slides/slides/06-dl-tech-intro.pdf" target="_blank">06: Deep Learning Tech Introduction</a></li>
<li><a href="https://embedded-dev-research.github.io/itlab_slides/slides/07-acl.pdf" target="_blank">07: ARM Compute Library introduction</a></li>
</ul>
</body>
</html>