-
Notifications
You must be signed in to change notification settings - Fork 0
/
classes.html
112 lines (101 loc) · 4.74 KB
/
classes.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Classes</title>
<link rel="stylesheet" href="styles.css">
<!--Google Fonts links-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@400;700&display=swap" rel="stylesheet">
<!--Icons Links-->
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
</head>
<body>
<header>
<a href="index.html"><h1 class="site-title">Seth Neubauer</h1></a>
<nav class="site-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contacts.html">Contact</a></li>
<li><a href="https://www.linkedin.com/in/sethneubauer/" target="_blank"><i class='bx bxl-linkedin-square'></i></a></li>
<li><a href="https://github.com/neubauerseth" target="_blank"><i class='bx bxl-github'></i></a></li>
</ul>
</nav>
</header>
<main>
<h2 class="courses-header">Courses I've Taken</h2>
<p> Undergraduate at Michigan State University</p>
<div class="two-column-container">
<div class="column1">
<div class="course-category">
<p>Computer Science Courses</p>
<ul>
<li>CSE 102 - Algorithmic Thinking/Programming</li>
<li>CSE 231 - Introduction to Programming I (Python)</li>
<li>CSE 232 - Introduction to Programming II (C++)</li>
<li>CSE 260 - Discrete Structures Comp Sci</li>
<li>CSE 300 - Ethics and Pro Issues in CS</li>
<li>CSE 320 - Comp Organizations and Arch</li>
<li>CSE 331 - Algorithms and Data Structures</li>
</ul>
</div>
<div class="course-category">
<p>Science Courses</p>
<ul>
<li>PHY 183 - Physics Scientist & Engineers I</li>
<li>ISB 204 - Appl Biomedical Scinences</li>
<li>ISB 208L - IS Biology Lab</li>
</ul>
</div>
<div class="course-category">
<p>Integrative Studies Courses</p>
<ul>
<li>IAH 201 - U.S. & The World</li>
<li>IAH 241G - Film and Culture</li>
<li>ISS 210 - Society and the Individual</li>
<li>ISS 305 - Evaluating Evidence (SC)</li>
</ul>
</div>
</div>
<div class="column2">
<div class="course-category">
<p>Mathematics Courses</p>
<ul>
<li>MTH 116 - College Algebra & Trigonometry</li>
<li>MTH 132 - Calculus I</li>
<li>MTH 133 - Calculus II</li>
<li>MTH 234 - Multivariable Calculus</li>
<li>MTH 314 - Matrix Algebra I</li>
</ul>
</div>
<div class="course-category">
<p>Study Abroad Courses</p>
<ul>
<li>Vrije Universiteit</li>
<ul>
<li>XB_0085 - Text Mining for AI</li>
<li>X_401049 - Automata and Complexity</li>
<li>XB_0025 - Computational Intelligence</li>
<li>XB_0087 - Information Management for CS</li>
</ul>
</ul>
</div>
<div class="course-category">
<p>Other Relevant Courses</p>
<ul>
<li>EGR 100 - Intro To Engineering Design</li>
<li>WRA 101 - Writing as Inquiry</li>
</ul>
</div>
</div>
</div>
</main>
<footer class="footer">
<hr>
<p>Seth Neubauer 2024</p>
</footer>
</body>
</html>