forked from cs4241-21a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (65 loc) · 2.26 KB
/
index.html
File metadata and controls
68 lines (65 loc) · 2.26 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
<!doctype html>
<html lang="en">
<head>
<style>
@import url('https://fonts.googleapis.com/css?family=Atkinson+Hyperlegible&display=swap');
body {
font-family: 'Atkinson Hyperlegible', sans-serif;
}
h1{
text-align: center;
font-family: "Arial",sans-serif;
}
h2, h3, h4{
font-family: "Arial", sans-serif;
}
#main{
margin: 25px;
padding: 15px;
background-color: lightblue;
}
a:link, a:visited{
text-decoration-style: dashed;
color:darkblue;
}
a:hover{
color:darkgreen;
}
</style>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
</head>
<body>
<h1>Information about Owen B.</h1>
<div id="main">
<p>
I am a robotics major and a computer science minor. Class of 2022.
</p>
<p>
In my spare time, I like reading science fiction and drawing comics. I also have a radio show through <a href="https://wwpiradioexecs.wixsite.com/wwpi">WWPI, the campus radio club</a>,
called <a href="https://bluef00t.neocities.org/music/telephony.html">Telephony Cacophony</a>.
</p>
<h2>Experience</h2>
<h4>
Previous CS Courses
</h4>
<ul>
<li>CS 1102: Accelerated Intro to Program Design</li>
<li>CS 2102: Object-Oriented Design Concepts</li>
<li>CS 2303: Systems Programming Concepts</li>
<li>Software Engineering</li>
<li>RBE 1001, 2001, 2002, 3001, & 3002</li>
</ul>
<h4>
Working Experience
</h4>
<ul>
<li>HTML & CSS: Built <a href="https://bluef00t.neocities.org/">a static site</a> on Neocities as a personal project, starting in high school</li>
<li>JavaScript: Use this for several widgets on Neocities, including the <a href="https://bluef00t.neocities.org/music/lemondemon/">animated homepage</a> for my Lemon Demon fansite.</li>
<li>Java: Taken several CS courses in Java; spent summer 2021 using the language as a Software Engineering internt at <a href="https://www.tibco.com/">TIBCO</a></li>
<li>Python: Summer courses; used extensively with ROS in RBE 3002</li>
<li>Unit testing: done in JUnit throughout several of the CS courses listed above</li>
</ul>
</div>
</body>
</html>