-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlessons.html
101 lines (97 loc) · 5.33 KB
/
lessons.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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<title>OpenSource</title>
<link rel="icon" href="assets/img/door.png">
<link href="assets/css/styles.css" rel="stylesheet" type="text/css">
<link href="assets/css/lessons_styles.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="assets/scripts/main.js"></script>
</head>
<body id='is-lessons'>
<div class='navbar'>
<img src='assets/img/opensource.png' id='nav-logo' onclick="location.href = '/';">
<div id='nav-box'>
<div class='nav-buttons' id='home-nav'>Home</div>
<div class='nav-buttons' id='about-us-nav'>About Us</div>
<div class='nav-buttons' id='projects-nav'>Projects</div>
<div class='nav-buttons' id='contact-nav'>Contact Us</div>
<div id='line'>|</div>
<div class='nav-buttons' id='lessons-nav'>Lessons</div>
</div>
</div>
<div id='lessons-box'>
<h1>Lessons</h1>
<div id='box'>
<div class='lesson' id='top'>
<div class='outline-desc'>
<b><font size= "5">March 7th, 2019</font></b>
<p id='lesson-desc'>Welcome to OpenSource! This meeting is a short one. You are going to be meeting your respective groups and outline what your group wants to do with the project and how to do it.</p>
</div>
<div class='drop-down'>
<p id='link' onclick="location.href = 'https://docs.google.com/document/d/1b-d-6D_c-kp5p2zAzn6_D_L-oBfzDjWidAu3VrrhE8k/edit?usp=sharing';">Lesson 1: Welcome</p>
</div>
</div>
<!-- <div class='lesson'>
<div class='outline-desc'>
<b><font size= "5">March 7th, 2019</font></b>
<p id='lesson-desc'>Welcome to OpenSource! This meeting is a short one. You are going to be meeting your respective groups and outline what your group wants to do with the project and how to do it.</p>
</div>
<div class='drop-down'>
<p id='link' onclick="location.href = 'https://docs.google.com/document/d/1b-d-6D_c-kp5p2zAzn6_D_L-oBfzDjWidAu3VrrhE8k/edit?usp=sharing';">Lesson 1: Welcome</p>
</div>
</div> -->
<div class='lesson' id='bottom'>
<div class='outline-desc'>
<b><font size= "5">March 14th, 2019</font></b>
<p id='lesson-desc'>We will be learning a little bit about web scraping and web requests, which will assist you in collecting data to use for your individual projects.</p>
</div>
<div class='drop-down'>
<p id='link' onclick="location.href = 'https://docs.google.com/document/d/1A0_nqU4zvgZhUYFnMefC9AYRaVKTOMXIgJotIH193EA/edit?usp=sharing';">Lesson 2: Web Scraping and Requests</p>
</div>
</div>
</div>
</div>
<!-- <div class='week'>
<h2 class='week-title'>Week 2</h2>
<p class='day'>TBA</p>
</div>
<div class='week'>
<h2 class='week-title'>Week 3</h2>
<p class='day'>TBA</p>
</div>
<div class='week'>
<h2 class='week-title'>Week 4</h2>
<p class='day'>TBA</p>
</div>
</div> -->
<footer>
<img src='assets/img/opensource.png' class='footer-logo'>
<div id='footer-main'>
<div class='footer-box' id='general'>
<div class='footer-title'>General</div>
<div class='footer-button' id='footer-about'>About Us</div>
<!-- <div class='footer-button' id='footer-project'>Projects</div>
<div class='footer-button' id='footer-team'>Team</div> -->
</div>
<div class='footer-box' id='get-involved'>
<div class='footer-title'>Get Involved</div>
<div class='footer-button' id='footer-apply'>Apply</div>
<div class='footer-button' id='footer-contact'>Contact Us</div>
</div>
</div>
<div class='disclaimer'>
<a class ='ocf' href="https://www.ocf.berkeley.edu">
<img src="http://www.ocf.berkeley.edu/hosting-logos/ocf-hosted-penguin.svg" alt="Hosted by the OCF" style="border: 0;" />
</a>
<p class='responsibility'>We are a student group acting independently of the University of California. We take full responsibility for our organization and this web site.</p>
</div>
<!-- <div class='footer-box' id='contact-us'>
<div class='footer-title'>Contact Us</div>
<div class='footer-button' id='footer-email'>Email</div>
<div class='footer-button'>Facebook</div>
</div> -->
</footer>
</body>
</html>