-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (90 loc) · 3.49 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<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>Python 101 London</title>
<link href='https://fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="static/css/normalize.css">
<link rel="stylesheet" href="static/css/skeleton.css">
<link rel="stylesheet" href="static/css/custom.css">
<link rel="shortcut icon" type="image/x-icon" href="static/img/python-favicon.ico">
</head>
<body>
<div class="container">
<section class="header">
<h1 class="title">Python 101 London</h1>
<h4 class="subtitle">A beginner's introduction to programming in Python<br>brought to you by Expedia Code Academy</h4>
<img src="static/img/code_academy_logo.png">
<br><br>
</section>
<div class="navbar-spacer"></div>
<nav class="navbar">
<div class="container">
<ul class="navbar-list">
<li class="navbar-item"><a class="navbar-link" href="/setup">Setup Instructions</a></li>
<li class="navbar-item"><a class="navbar-link" href="#slides">Slides</a></li>
<li class="navbar-item"><a class="navbar-link" href="#exercises">Exercises</a></li>
<li class="navbar-item"><a class="navbar-link" href="#contributors">Contributors</a></li>
</ul>
</div>
</nav>
<div class="docs-section" id="slides">
<h3>Slides</h3>
<ul>
<li>
<a href="https://python101ldn.github.io/slides/lesson1.html">Lesson 1</a><br>
(introduction, installation, variables, numbers, strings)
</li>
<li>
<a href="https://python101ldn.github.io/slides/lesson2.html">Lesson 2</a><br>
(booleans and conditional statements)
</li>
<li>
<a href="https://python101ldn.github.io/slides/lesson3.html">Lesson 3</a><br>
(lists)
</li>
<li>
<a href="https://python101ldn.github.io/slides/lesson4.html">Lesson 4</a><br>
(while and for loops)
</li>
<li>
<a href="https://python101ldn.github.io/slides/lesson5.html">Lesson 5</a><br>
(exercises for weeks 1-4)
</li>
<li>
<a href="https://python101ldn.github.io/slides/lesson6.html">Lesson 6</a><br>
(dictionaries)
</li>
<li>
<a href="https://python101ldn.github.io/slides/lesson7.html">Lesson 7</a><br>
(functions)
</li>
<li>
<a href="https://python101ldn.github.io/slides/lesson8.html">Lesson 8</a><br>
(wrap-up)
</li>
</ul>
</div>
<div class="docs-section" id="exercises">
<h3>Exercises and Solutions</h3>
<p>
All exercises and/or solutions can be found in <a href="https://github.com/python101ldn/exercises" target="_blank">this</a> repository - each is prefixed with the lesson number.
</p>
</div>
<div class="docs-section" id="contributors">
<h3>Contributors</h3>
<div class="row" id="contributors-row">
<div class="four columns">
<a href="https://github.com/agutteridge" target="_blank">agutteridge</a>
</div>
<div class="four columns">
<a href="https://github.com/velivelinov" target="_blank">velivelinov</a>
</div>
<div class="four columns">
<a href="https://github.com/chi-lp" target="_blank">chi-lp</a>
</div>
</div>
</div>
</div>
</body>
</html>