forked from OpenTechSchool/python-beginners
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.32 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.32 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Introduction to programming with Python</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
text-align: center;
}
p {
padding-top: 1em;
}
a {
text-decoration: none;
}
a:hover {
font-weight: bold;
}
#container {
margin: 0 auto;
padding-top: 4em;
text-align: center;
font-family: Montserrat, sans-serif;
}
#container ul {
list-style: none;
padding: 0;
margin: 2em;
}
#container li {
display: inline;
padding: 1em;
}
</style>
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="container">
<h1>Introduction to programming with Python</h1>
<ul>
<li><a href="en/index.html">English</a></li>
<li><a href="de/index.html">Deutsch (German)</a></li>
<li><a href="es_CL/index.html">Español (Spanish)</a></li>
<li><a href="ru/index.html">русский (Russian)</a></li>
<li><a href="ko/index.html">한국인 (Korean)</a></li>
<li><a href="ro/index.html">Română (Romanian)</a></li>
</ul>
</div>
</body>
</html>