forked from flowingis/javascript-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 1.88 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
<html>
<head>
<title>extrategy Javascript Course</title>
<link rel="shortcut icon" href="http://www.e-xtrategy.net/wp-content/themes/ex2011/favicon.png">
<link rel="apple-touch-icon" href="http://www.e-xtrategy.net/wp-content/themes/ex2011/apple-touch-icon.png">
<style>
body {
margin: 0;
padding: 40px 25px;
background-color: #EFEFEF;
color: #666666;
text-align: center;
font-family: "Open Sans Regular",Helvetica,Arial,sans-serif;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li a {
color: #017EAC;
}
.logo {
width: 30%;
position: fixed;
bottom: 10px;
right: 10px;
}
.menu {
padding-top: 50px;
}
</style>
</head>
<body>
<h1>Javascript course</h1>
<div class="menu">
<ul>
<li><h2><a href="course/01_js-basics">JavaScript Basics</a></h2></li>
<li><h2><a href="course/02_id_ui_html_css">Introduction to ID, UI, HTML e CSS</a></h2></li>
<li><h2><a href="course/04_js_advanced_1">Advanced JavaScript 1</a></h2></li>
<li><h2><a href="course/05_js_advanced_2">Advanced JavaScript 2</a></h2></li>
<li><h2><a href="course/06_task_runners">Task Runners</a></h2></li>
<li><h2><a href="course/07_tdd">Test Driven Development</a></h2></li>
<li><h2><a href="course/08_angular2">Angular2</a></h2></li>
<li><h2><a href="course/10_react">React</a></h2></li>
</ul>
</div>
<img class="logo" src="img/logo.svg" />
</body>
</html>