-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject1.html
120 lines (117 loc) · 4.8 KB
/
project1.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Project 1</title>
<link rel="stylesheet" type="text/css" href="project1.css" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+Pro&display=swap"
rel="stylesheet">
</head>
<div class="container">
<div class="header">
<h2 class="header-title">ACADEMIC PLANNING version 1.0</h2>
</div>
<div class="requirements">
<h3>Requirements</h3>
</div>
<div class="course-table">
<div class="course-flex-table">
<div class="course-row">
<div class="course-row-item">
<h3 class="semester">Fall 2018</h3>
<p>CS-1210 C++ Programming</p>
<p>HUM-1400 Intro to Humanities</p>
<p>MATH-1710 Calculus I</p>
</div>
<div class="course-row-item">
<h3 class="semester">Spring 2019</h3>
<p>CS-1220 Obj-Orient Design</p>
<p>PHYS-2110 General Physics I</p>
<p>MATH-1720 Calculus II</p>
</div>
<div class="course-row-item">
<h3 class="semester">Summer 2019</h3>
<p>SOC-1300 Intro to Sociology</p>
<p>BTGE-1725 Bible & the Gospel</p>
</div>
</div>
<div class="course-row">
<div class="course-row-item">
<h3 class="semester">Fall 2019</h3>
<p>CS-2210 Data Struct Using Java</p>
<p>CS-3350 Foundations Computer Security</p>
<p>PHYS-2120 General Physics II</p>
</div>
<div class="course-row-item">
<h3 class="semester">Spring 2020</h3>
<p>CS-3310 Operating Systems</p>
<p>EGCP-3210 Computer Architecture</p>
<p>MATH-2520 Discrete Math</p>
</div>
<div class="course-row-item">
<h3 class="semester">Summer 2020</h3>
<p>LIT-2340 Western Literature</p>
<p>BTGE-2730 Old Testament</p>
<p>BTGE-2740 New Testament</p>
</div>
</div>
<div class="course-row">
<div class="course-row-item">
<h3 class="semester">Fall 2020</h3>
<p>CS-3210 Programming Language Survey</p>
<p>CS-3410 Algorithms</p>
<p>EGCP-4310 Computer Networks</p>
</div>
<div class="course-row-item">
<h3 class="semester">Spring 2021</h3>
<p>CS-3220 Web Applications</p>
<p>CS-3610 Database Org</p>
<p>CS-4430 Machine Lrng/Intelligent Agents</p>
</div>
<div class="course-row-item">
<h3 class="semester">Summer 2021</h3>
<p>BTGE-3755 Theology I</p>
<p>BTGE-3765 Theology II</p>
<p>VCD-1050 Applied Design</p>
</div>
</div>
<div class="course-row">
<div class="course-row-item">
<h3 class="semester">Fall 2021</h3>
<p>EGGN-4010 Senior Seminar</p>
<p>CS-4810 Software Engineering I</p>
<p>VCD-2200 Typography</p>
</div>
<div class="course-row-item">
<h3 class="semester">Spring 2022</h3>
<p>CS-4820 Software Engineering II</p>
<p>CS-3510 Compiler Theory</p>
<p>VCD-2400 Graphic Design I</p>
</div>
<div class="course-row-item">
<h3 class="semester">Summer 2022</h3>
<p>ENG-1400 Composition</p>
<p>GBIO-1000 Prin of Biology</p>
<p>HIST-1110 US History I</p>
</div>
</div>
</div>
</div>
<div class="links">
<h3>Links to get out of here</h3>
<ul>
<li class="btn"><a href="http://judah.cedarville.edu/~solokha/cs3220.html">
<h3>Go Back</h3>
</a></li>
<li class="btn"><a href="http://judah.cedarville.edu/peopleschoice/index.php">
<h3>People's Choice Awards</h3>
</a></li>
</ul>
</div>
<div class="course-finder">
<h3>Course Finder</h3>
</div>
</div>
</html>