forked from cs4241-19a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
65 lines (61 loc) · 1.72 KB
/
Copy pathexperience.html
File metadata and controls
65 lines (61 loc) · 1.72 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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="styles.css" media="screen" />
<link rel="stylesheet" type="text/css" href="image_styles.css" media="screen" />
<title>CS4241 Assignment 1 - Experience</title>
<meta charset="utf-8">
</head>
<body class = "page">
<div class="hero-image">
</div>
<div id="wrap">
<div id="header">
<h1 class = "myHead">Caitlin Enright</h1>
<hr style="border: 1px solid black;" />
</div>
<div id="nav">
<ul>
<li><button class = "toggle_button" name="button"><a href="/index.html" class = "button_link">Home</a></button></li>
<li><button class = "toggle_button" name="button"><a href="/experience.html" class = "button_link">Experience</a></button></li>
</ul>
</div>
<div id= "main_e">
<h2>Working Experience</h2>
<ul>
<li>Optum - Technology Development Program</li>
<li>WPI - Tutor, Studio Manager</li>
</ul>
</div>
<div id = "main_e">
<h2>
Software Experience
</h2>
<ul>
<li>HTML (a lot) </li>
<li>CSS (a lot)</li>
<li>JavaScript (none)</li>
<li>Ruby (none)</li>
<li>Python (some)</li>
<li>unit testing (some)</li>
</ul>
</div>
<div id="sidebar">
<h2>Classes</h2>
<ul><li>CS 1102</li>
<li>CS 2102</li>
<li>CS 2303</li>
<li>CS 2011</li>
<li>CS 2022</li>
<li>CS 2223</li>
<li>CS 3013</li>
<li>CS 3431</li>
<li>CS 3733</li>
</ul>
</div>
<div class = "footer" id="footer">
<p>CS4241, A term, 2019, Professor Roberts</p>
</div>
</div>
</body>
</html>