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
35 lines (35 loc) · 902 Bytes
/
index.html
File metadata and controls
35 lines (35 loc) · 902 Bytes
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Introduction to programming with Python</title>
<link href='http://fonts.googleapis.com/css?family=Istok+Web:400,700' rel='stylesheet' type='text/css'>
<style type="text/css">
body {
margin: 0;
padding: 0;
text-align: center;
}
p {
padding-top: 1em;
}
#container {
margin: 0 auto;
padding-top: 5%;
text-align: center;
font-family: 'Istok Web', sans-serif;
}
</style>
</head>
<body>
<div id="container">
<h1>Introduction to programming with Python</h1>
<p>
<a href="en/index.html">English</a><br/>
</p>
<p>
<a href="de/index.html">Deutsche</a><br/>
</p>
</div>
</body>
</html>