-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeNation.html
More file actions
106 lines (93 loc) · 5.16 KB
/
codeNation.html
File metadata and controls
106 lines (93 loc) · 5.16 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
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
103
104
105
<!DOCTYPE html>
<html lang="eng">
<!-- page head -->
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Katherine Ayers</title>
</head>
<!-- main body -->
<body>
<!-- Header -->
<div class = "header"><b>Katherine Ayers - Code Nation</b></div>
<!-- navigation bar -->
<div class = "navbar">
<div class="siteLinks"><a href="index.html"><b>About Me</b></a></div>
<div class="siteLinks"><a href="cv.html"><b>Curriculum Vitae</b></a></div>
<div class="siteLinks"><a href="codeclub.html"><b>Code Club</b></a></div>
<div class="siteLinks"><a href="codeNation.html"><b>Code Nation</b></a></div>
</div>
<!--left column -->
<div class="row">
<div class="leftColumn">
<div class="card_out">
<h4>Code Nation Useful Links</h4>
<div class="card">
<p><a href="https://wearecodenation.com" target="_blank">Code Nation</a></p>
<p><a href="https://www.w3schools.com" target="_blank">w3schools</a></p>
<p><a href="https://visualstudio.microsoft.com" target="_blank">Visual Studios</a></p>
<p><a href="https://www.python.org" target="_blank">Python</a></p>
</div>
</div>
<div class="card_out">
<h4>My Code Nation</h4>
<div class="card">
<p><a href="#lesson_1">Code Nation Lesson 1 </a></p>
<p><a href="#lesson_2">Code Nation Lesson 2 </a></p>
<p><a href="#lesson_3">Code Nation Lesson 3 </a></p>
<p><a href="#lesson_4">Code Nation Lesson 4 </a></p>
<p><a href="#project">Code Nation Project </a></p>
</div>
</div>
</div>
<!--Right column -->
<div class="rightColumn">
<div class="card_out"><h3>Python Lessons</h3>
<div class="card_out" id="lesson_1">
<p><h4>Python Lesson 1</h4></p>
<div class="card">
<p>My notes from lesson 1; We covered data types and methods that can be used on strings</p>
<iframe src="https://trinket.io/embed/python3/fbddd74e66" width="100%" height="356" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
<p><a href="codeNation.html">Back to top of page</a></p>
</div>
</div>
<div class="card_out" id="lesson_2">
<p><h4>Python Lesson 2</h4></p>
<div class="card">
<p>My notes from lesson 2: We covered variables, using varibales in strings. Maths operators. User input. If Else statemets and comparisons</p>
<iframe src="https://trinket.io/embed/python3/803a39c2f8" width="100%" height="356" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
<p><a href="codeNation.html">Back to top of page</a></p></div>
</div>
<div class="card_out" id="lesson_3">
<p><h4>Python Lesson 3</h4></p>
<div class="card">
<p>My noes from lesson 3: We covered functions; global variables;functions in functions (recursive programming); plus the AND OR statement</p>
<iframe src="https://trinket.io/embed/python3/10f0dee451" width="100%" height="356" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
<p><a href="codeNation.html">Back to top of page</a></p></div>
</div>
<div class="card_out" id="lesson_4">
<p><h4>Python Lesson 4</h4></p>
<div class="card">
<p>My notes from lesson 4: We covered lists and for loop</p>
<iframe src="https://trinket.io/embed/python3/a39ded085d" width="100%" height="356" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
<p><a href="codeNation.html">Back to top of page</a></p></div>
</div>
</div>
</div>
</div>
</div>
<div class="card_out"><h3>Blue Team Project</h3>
<div class="card_out" id="project">
<p><h4>Python Project</h4></p>
<div class="card">
<p>After covering the python material we worked in teams to create a Roll Playing Game using python. My team and I created a football penalty shootout style game with a dice themed twist</p>
<iframe src="https://trinket.io/embed/python3/0dc9ccbcfa" width="100%" height="356" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
<p><a href="codeNation.html">Back to top of page</a></p></div>
</div>
</div>
</div>
</div>
<div id = "footer">Thank you for visiting<br>
<a href="codeNation.html">Return to top</a> | <a href="template.html">View template</a></div>
</body>
</html>