forked from cs4241-21a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (51 loc) · 1.86 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');
p {color: #FA0DBB;}
ul {color: #C30BDE;}
ul>li:nth-child(even) {
color: #500BDE;
}
h1 {color: #9301F5; word-spacing: 10px}
h2 {color: #1A0DFA; font-family: 'Roboto Mono', monospace;}
h3 {color: #9301F5; cursor: crosshair; text-shadow: 0px 1px #000000;}
</style>
</head>
<body>
<!-- Colors: #FA0DBB, #C30BDE, #9301F5, #500BDE, #1A0DFA -->
<h1>Information about Alan Healy</h1>
<h2> Academics </h2>
<p> Class of 2022 </p>
<p> Computer Science Major, Physics Minor, Mathematics Minor </p>
<h3> Previous WPI Computer Science Courses: </h3>
<ul>
<li>CS 4731 Computer Graphics</li>
<li>CS 4404 Tools and Techniques in Computer Network Security</li>
<li>CS 3733 Software Engineering</li>
<li>CS 3431 Database Systems 1</li>
<li>CS 3013 Operating Systems</li>
<li>CS 3043 Social Implications of Information Processing</li>
<li>CS 3133 Foundations of Computer Science</li>
<li>CS 3516 Computer Networks</li>
<li>CS 2011 Introduction to Machine Organization and Assembly</li>
<li>CS 2223 Algorithms</li>
<li>CS 2303 Systems Programming Concepts</li>
<li>CS 2103 Accelerated Object-Oriented Design Concepts</li>
<li>CS 1102 Accelerated Introduction to Program Design</li>
</ul>
<h2>Experience</h2>
<ul>
<li>HTML: some</li>
<li>CSS: some</li>
<li>Java: a lot</li>
<li>JavaScript: some</li>
<li>Ruby: none</li>
<li>Python: some</li>
<li>Unit Testing: a lot</li>
</ul>
</body>
</html>