-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
102 lines (81 loc) · 5.2 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
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://www.owencampbell.me.uk/images/favicon/favicon.ico" rel="icon">
<title>SQL for Python Programmers</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<link href="https://www.owencampbell.me.uk/theme/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="/sql_python_tutorial/static/styles.css">
</head>
<body>
<div class="fixed-top">
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<a class="navbar-brand" href="#">SQL for Python Programmers</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarContent">
<div class="navbar-nav">
<a class="nav-item nav-link" href="/sql_python_tutorial/"><i class="fa fa-home fa-fw" aria-hidden="true" title="home"></i> Home</a>
<a class="nav-item nav-link mr-auto" href="/sql_python_tutorial/chapters/"><i class="fa fa-book fa-fw" aria-hidden="true" title="contents"></i> Contents</a>
<a class="nav-item nav-link" href="/sql_python_tutorial/pages/intro.html"><i class="fa fa-info-circle fa-fw" aria-hidden="true" title="introduction"></i> Introduction</a>
<a class="nav-item nav-link" href="/sql_python_tutorial/pages/howto.html"><i class="fa fa-gears fa-fw" aria-hidden="true" title="how to"></i> How To</span></a>
<a class="nav-item nav-link" href="/sql_python_tutorial/pages/primer.html"><i class="fa fa-database fa-fw" aria-hidden="true" title="primer"></i> Primer</a>
</div>
<div class="navbar-nav ml-auto">
<a class="btn btn-link btn-lg" href="https://www.linkedin.com/in/owencampbell" title="linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
<a class="btn btn-link btn-lg" href="http://github.com/meatballs" title="github"><i class="fa fa-github" aria-hidden="true"></i></a>
</div>
</div>
</nav>
</div>
<main role="main" class="container">
<div class="jumbotron">
<h1 class="display-3">Welcome</h1>
<p>This is a tutorial for Python programmers who would like to improve their knowledge of SQL.</p>
<p>You may find it helpful to read the <a href="/sql_python_tutorial/pages/intro.html">Introduction</a>, <a href="/sql_python_tutorial/pages/howto">How To</a> and <a href="/sql_python_tutorial/pages/primer">Primer</a> pages first, but you are also welcome to dive straight in:</p>
<p><a class="btn btn-primary btn-lg" href="/sql_python_tutorial/chapters/01/" role="button">Start <i class="fa fa-play fa-fw" aria-hidden="true"></i></a></p>
</div>
<div class="row">
<div class="panel col-sm">
<h4><i class="fa fa-info-circle" aria-hidden="true"></i> Introduction</h4>
<p>Why you might want to learn SQL, the level of knowledge you will need for this tutorial and how you can help to improve it.</p>
<div class="panel-button">
<a class="btn btn-secondary" href="/sql_python_tutorial/pages/intro.html" role="button">View details <i class="fa fa-angle-double-right fa-fw" aria-hidden="true"></i></a>
</div>
</div>
<div class="panel col-sm">
<h4><i class="fa fa-cogs" aria-hidden="true"></i> How To</h4>
<p>The tutorial includes lots of code which you may wish to run for yourself and there are several options for doing so.</p>
<div class="panel-button">
<a class="btn btn-secondary" href="/sql_python_tutorial/pages/howto.html" role="button">View details <i class="fa fa-angle-double-right fa-fw" aria-hidden="true"></i></a>
</div>
</div>
<div class="panel col-sm">
<h4><i class="fa fa-database" aria-hidden="true"></i> Primer</h4>
<p>Background material on relational databases and SQL.</p>
<div class="panel-button">
<a class="btn btn-secondary" href="/sql_python_tutorial/pages/primer.html" role="button">View details <i class="fa fa-angle-double-right fa-fw" aria-hidden="true"></i></a>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<span class="text-muted">
<p class="small">
This tutorial was inspired by a talk given by <a href="https://twitter.com/waveform80">Dave Jones</a> at <a href="https://twitter.com/pythonnw">Python North West</a>.
The flights database, and much of the SQL code, is taken, with grateful thanks,
from the <a href="https://waveform.org.uk/presentations/sql">slides</a> and
<a href="https://github.com/waveform80/presentations">source code</a> for that talk.
<br/>
Many thanks also to <a href="https://vknight.org/">Dr. Vincent Knight</a> of <a href="http://www.cardiff.ac.uk">Cardiff University</a> for the use of his
<a href="https://vknight.org/gt/">Game Theory Course Notes</a> and their <a href="https://github.com/drvinceknight/gt">source code</a>.
</p>
</span>
</div>
</footer>
</body>
</html>