forked from briannamelius/JS-Interactive-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclassstd.html
More file actions
77 lines (62 loc) · 4.23 KB
/
Copy pathclassstd.html
File metadata and controls
77 lines (62 loc) · 4.23 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>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,300' rel='stylesheet'>
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp2/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="container">
<a href="index.html" class="logo-icon">
<img src="CIS_logo (1).jpg">
</a>
<ul class="menu">
<li><a href="aboutus.html">About Us</a></li>
<li><a href="events.html">Upcoming Events</a></li>
<li><a href="classstd.html">Class Standards</a></li>
<li><a href="coollnks.html">Cool Links</a></li>
<li><a href="news.html">Class News</a></li>
<li><a href="canpaign.html">Kickhunger CANpaign</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle">More <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://classroom.google.com">Google Classroom</a></li>
<li><a href="https://drive.google.com/drive/folders/0B-IVy_B1DDaKflRHb0w5R2xUSlpocTNnMXp3b0tJblNLZVNnOExITEYxRFdHbnZaUlJ4NnM">PLTW Presentations</a></li>
<li><a href="https://drive.google.com/drive/folders/0B-IVy_B1DDaKfndsVzNQMXI1cGtKV0ZkSHNnTUhTeURyUVNJU0xuUm1DNUtiekdWMGR2Q2c">eBooks</a></li>
<li><a href="http://www.codeabbey.com/">CodeAbbey</a></li>
<li><a href="https://drive.google.com/drive/folders/0B-IVy_B1DDaKRTVNRXNTbXNxekU">Intro To Canopy</a></li>
<li><a href="https://drive.google.com/drive/folders/0B-IVy_B1DDaKRTVNRXNTbXNxekU">Intro To IDLE</a></li>
<li><a href="http://programarcadegames.com/index.php">Python and Pygame Resources</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="about-copy col-md-6">
<h1>Class Standards</h1>
<h2>CIS 1</h2>
<p>This program is open to juniors and seniors who have an interest in computer programming or database administration as a wage earning occupation or post-secondary degree.
Students will learn beginning and intermediate business programming and business communication concepts. They will learn the basics of the Python programming language and design skills. The students will complete a final project that will incorporate all facets of the class.
Students who successfully complete this program will be able to develop business and other forms of software application. Graduates may be employed by software development or consulting firms, or may continue on to a college level degree program.
1 year program; 3 units of credit. Prerequisites: 10th grade reading and 8th grade or higher math.</p>
<h2>CIS 2</h2>
<p>This program is open to seniors who have an interest in more advanced computer programming or web design as a wage earning occupation or post-secondary degree.
Students will choose at least three of the following modules: C++, HTML, Linux Administration, Advanced Python, Ruby, or Database design. These modules will be completed either independently or collaboratively, depending on how many other students choose the same module. Additionally, 2nd year students will also act as assistants during lab sessions for the 1st year students. Each 2nd year student will develop one lesson plan, with the instructors help, to deliver to the 1st year class.
Students who successfully complete this program will be able to develop advanced applications in their chosen path. Graduates may be employed by software development or consulting firms, or continue on to a college level degree programs.
1 year program; 3 units of credit
Prerequisites: 10th grade reading and 8th grade or higher math, CIS 1st year with 85% or higher after 1st semester, no disciplinary issues, and have instructor approval.</p>
</div>
<div class="news-img col-md-6">
<img src="computer.jpg" width="200px">
</div>
<div class="class-img col-md-6">
<img src="pencil.jpg" width="200px">
</div>
<div class="book-img col-md-6">
<img src="notebook.jpg" width="200px">
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="./app.js"></script>
</body>
</html>