-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.html
81 lines (69 loc) · 3.66 KB
/
resources.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Code Girls</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<base target="_blank">
</head>
<body>
<script src="script.js"></script>
<ul>
<li><a href="index.html" target="_self">Home</a></li>
<li><a href="about.html" target="_self">About</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Curriculum</a>
<div class="dropdown-content">
<a href="2022-2023.html" target="_self">2022-2023</a>
<a href="resources.html" target="_self">Additional Resources</a>
</li>
<li><a href="competition.html" target="_self">Overview</a></li>
</ul>
<h1>Resources</h1>
<p>Below are helpful computer science learning materials. Lecture slides from past meetings and other websites are
available.
</p>
<h2>Past Lecture Slides</h2>
<div class="references">
<p><a href="2021_22/Intro Meeting.pdf">Intro Meeting</a></p>
<p><a href="2021_22/Python Lecture 1.pdf">Python Intro</a></p>
<p><a href="2021_22/Python Lecture 2.pdf">Python Conditionals</a></p>
<p><a href="2021_22/Python Lecture 3.pdf">Python Loops</a></p>
<p><a href="2021_22/Python Lecture 4.pdf">Python Built-In Functions and Methods</a></p>
<p><a href="2021_22/Python Lecture 5.pdf">Python Functions</a></p>
<p><a href="2021_22/Python Lecture 6.pdf">Python Data Structures Part 1</a></p>
<p><a href="2021_22/Python Lecture 7.pdf">Python Data Structures Part 2</a></p>
<p><a href="2021_22/Python Libraries.pdf">Python Libraries</a></p>
<p><a href="2021_22/Cybersecurity.pdf">Cybersecurity</a></p>
<p><a href="2021_22/Virtual Reality and Augmented Reality.pdf">VR and AR</a></p>
<p><a href="2021_22/Computer Components.pdf">Computer Components</a></p>
<p><a href="2021_22/Computer Safety.pdf">Computer Safety</a></p>
<p><a href="2021_22/Resume Workshop.pdf">Resume Workshop</a></p>
<p><a href="2021_22/Intro to Web Dev Lecture.pdf">Web Dev Intro</a></p>
<p><a href="2021_22/Web Dev Presentation 1.pdf">Web Dev Part 1</a></p>
<p><a href="2021_22/Web Dev Presentation 2.pdf">Web Dev Part 2</a></p>
<p><a href="past_slideshows/HTML Lecture 1.pdf">HTML Lecture 1</a></p>
<p><a href="past_slideshows/HTML Lecture 2.pdf">HTML Lecture 2</a></p>
<p><a href="past_slideshows/HTML Lecture 3.pdf">HTML Lecture 3</a></p>
<p><a href="past_slideshows/HTML Lecture 4.pdf">HTML Lecture 4</a></p>
<p><a href="past_slideshows/CSS Lecture 1.pdf">CSS Lecture 1</a></p>
<p><a href="past_slideshows/CSS Lecture 2 Part 1.pdf">CSS Lecture 2 Part 1</a></p>
<p><a href="past_slideshows/CSS Lecture 2 Part 2.pdf">CSS Lecture 2 Part 2</a></p>
<p><a href="past_slideshows/CSS Lecture 3.pdf">CSS Lecture 3</a></p>
<p><a href="past_slideshows/JavaScript Lecture 1.pdf">JavaScript Lecture 1</a></p>
<p><a href="past_slideshows/JavaScript Lecture 2.pdf">JavaScript Lecture 2</a></p>
</div>
<h2>Additional Resources</h2>
<p><a href="https://www.w3schools.com/">W3Schools</a></p>
<p><a href="https://www.codecademy.com/">Codeacademy</a></p>
<div class="footer">Copyright © 2022 Montgomery Blair Code Girls.</div>
</body>
</html>