-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvenv.html
More file actions
77 lines (69 loc) · 3.67 KB
/
venv.html
File metadata and controls
77 lines (69 loc) · 3.67 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
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
<!DOCTYPE HTML>
<html>
<head>
<title>Test Driven Python</title>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<!--Add favicon-->
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="css/main.css" media="screen" rel="stylesheet">
</head>
<body>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<nav>
<div class="nav-wrapper indigo darken-2">
<a href="index.html" class="brand-logo">Test Driven Python</a>
<a href="#" data-activates="mobile" class="button-collapse"><i class="material-icons">menu</i></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a class="dropdown-button" href="#!" data-activates="dropdown1">Lessons<i class="material-icons right">arrow_drop_down</i></a>
</li>
<li><a href="https://github.com/thejessleigh/test_driven_python">View on Github</a></li>
<li><a href="credits.html">Credits</a></li>
</ul>
<ul class="side-nav" id="mobile">
<li><a href="https://github.com/thejessleigh/test_driven_python">View on Github</a></li>
<li><a href="credits.html">Credits</a></li>
<li><a class="dropdown-button" href="#!" data-activates="dropdown2">Lessons<i class="material-icons right">arrow_drop_down</i></a>
</li>
</ul>
</div>
</nav>
<div class="main">
<ul id="dropdown1" class="dropdown-content indigo-text text-darken-2">
<li><a href="lessons/lesson_0_hello_world/index.html">Lesson 0: Hello World</a></li>
<li><a href="lessons/lesson_1_greetings/index.html">Lesson 1: Greetings</a></li>
<li><a href="lessons/lesson_2_fizzbuzz/index.html">Lesson 2: FizzBuzz</a></li>
<li><a href="lessons/lesson_3_calculator/index.html">Lesson 3: Calculator</a></li>
<li><a href="lessons/lesson_4_temperature/index.html">Lesson 4: Temperature</a></li>
<li><a href="lessons/lesson_5_pig_latin/index.html">Lesson 5: Pig Latin</a></li>
<li><a href="lessons/lesson_6_books/index.html">Lesson 6: Books</a></li>
<li><a href="lessons/lesson_7_anagrams/index.html">Lesson 7: Anagrams</a></li>
</ul>
<ul id="dropdown2" class="dropdown-content indigo-text text-darken-2">
<li><a href="lessons/lesson_0_hello_world/index.html">Lesson 0: Hello World</a></li>
<li><a href="lessons/lesson_1_greetings/index.html">Lesson 1: Greetings</a></li>
<li><a href="lessons/lesson_2_fizzbuzz/index.html">Lesson 2: FizzBuzz</a></li>
<li><a href="lessons/lesson_3_calculator/index.html">Lesson 3: Calculator</a></li>
<li><a href="lessons/lesson_4_temperature/index.html">Lesson 4: Temperature</a></li>
<li><a href="lessons/lesson_5_pig_latin/index.html">Lesson 5: Pig Latin</a></li>
<li><a href="lessons/lesson_6_books/index.html">Lesson 6: Books</a></li>
<li><a href="lessons/lesson_7_anagrams/index.html">Lesson 7: Anagrams</a></li>
</ul>
<h3></h3>
<div class="row">
<div class="col s12 m12 l6">
<div class="card indigo lighten-5">
<div class="card-content black-text">
</div>
</div>
</div>
</div>
</div>
</body>
</html>