forked from cs4241-19a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·72 lines (70 loc) · 1.67 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
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<script src="onLoad.js"></script>
<body>
<div class="bird-container">
<div class="bird"></div>
</div>
<div id="g">
<h1>Information about Jeffrey Harnois</h1>
</div>
<div id="i">
<p>
Hi, my name is Jeff.
</p>
<p>
I am a CS/Psych double major who wants to do cyber security.
</p>
<p>
I am in my third year here at WPI.
</p>
</div>
<h2>
I have taken
<ol>
<li style = "color: yellow"> 1101 </li>
<li style = "color: red"> 2102 </li>
<li style = "color: yellow"> 2303 </li>
<li style = "color: green"> 2011 </li>
<li style = "color: green"> 3516 </li>
<li style = "color: green"> 4801 </li>
<li style = "color: yellow"> 3013 </li>
<li style = "color: yellow"> 3431 </li>
<li style = "color: yellow"> 3733 </li>
</ol>
</h2>
<p>
Working experience
</p>
<ul>
<li>YMCA</li>
<li>WPI</li>
<li>Graspable Inc</li>
</ul>
<p>
I have used
</p>
<dl>
<dt> Languages: </dt>
<dd> Java </dd>
<dd> Racket </dd>
<dd> Python </dd>
<dd> JavaScript/TypeScript</dd>
<dd> HTML </dd>
<dd> CSS</dd>
<dd> C </dd>
<dd> C++ </dd>
<dd> R </dd>
<dt> Methods: </dt>
<dd> Agile Methodology </dd>
<dd> Unit Testing </dd>
<dd> Behaivoral/UI Testing </dd>
</dl>
p.s, I don't really like birds too much, I just like this animation
</body>
</html>