forked from cs4241-18a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·127 lines (118 loc) · 5.24 KB
/
index.html
File metadata and controls
executable file
·127 lines (118 loc) · 5.24 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="bootstrap.css">
</head>
<body>
<div class="jumbotron">
<h1 style="text-align: center">All About Madeline Burke</h1>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="text-center">
<img src="prof.jpg" class="img-rounded" style="width:200px;height:200px;">
</div>
</div>
<div class="col-sm-8">
<p class="lead">
Hi, my name is Madeline Burke and I am a Senior at Worcester Polytechnic Institute (WPI). I am majoring in Computer Science and minoring in Data Science and Business. Interests of mine include front-end development, Human-Computer Interaction, and project management.
</p>
<p class="lead">
Outside of the classroom, I am also a <a href="https://athletics.wpi.edu/sports/wrowing/2017-18/bios/burke_madeline_6glg?view=news">coxswain on WPI's Varsity Rowing Team</a>.
</p>
</div>
</div>
</div>
<hr>
<div class="container">
<h2>Experience at WPI</h2>
<br>
<div class="row">
<div class="col-sm-6">
<ul class="list-group list-group-flush">
<li class="list-group-item"><b>CS1101:</b> Introduction to Program Design</li>
<li class="list-group-item"><b>CS2022:</b> Descrete Mathematics</li>
<li class="list-group-item"><b>CS2102:</b> Object-Oriented Design</li>
<li class="list-group-item"><b>CS2223:</b> Algorithms</li>
<li class="list-group-item"><b>CS2302:</b> Systems Programming</li>
<li class="list-group-item"><b>CS2011:</b> Machine Organization & Assembly</li>
<li class="list-group-item"><b>CS3041:</b> Human-Computer Interaction</li>
</ul>
</div>
<div class="col-sm-6">
<ul class="list-group list-group-flush">
<li class="list-group-item"><b>CS3043:</b> Social Implications of Information Processing</li>
<li class="list-group-item"><b>CS3133:</b> Foundations of Computer Science</li>
<li class="list-group-item"><b>CS3733:</b> Software Engineering</li>
<li class="list-group-item"><b>CS3013:</b> Operating Systems</li>
<li class="list-group-item"><b>CS3516:</b> Computer Networks</li>
<li class="list-group-item"><b>CS4120:</b> Analysis of Algorithms</li>
</ul>
</div>
</div>
<div class="container">
<div class="row">
<h2>Real-World Experience</h2>
</div>
<div class="row">
<div class="col-sm-6">
<div class="text-center">
<img src="dnb.jpg" style="width:350px;height:100px;">
<p><b>Jun - Aug 2017:</b> Technology Product Development Intern</p>
<p><b>Jun - Aug 2016:</b> Global Security & Risk Intern</p>
</div>
</div>
<div class="col-sm-6">
<div class="text-center">
<img src="lmi.png" style="width:300px;height:100px;">
<br>
<br>
<p><b>May - Aug 2018:</b> USCMIT Products and Underwriting Intern</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<h2>Skill Set</h2>
<br>
<div class="row">
<div class="col-sm-4">
<ul class="list-group list-group-flush">
<li class="list-group-item" style="text-align: center;background-color:#00cc00">
<b>Proficient:</b>
</li>
<li class="list-group-item">Java</li>
<li class="list-group-item">Python</li>
<li class="list-group-item">HTML</li>
<li class="list-group-item">CSS</li>
</ul>
</div>
<div class="col-sm-4">
<ul>
<li class="list-group-item" style="text-align: center;background-color:#b3ffb3"><b>Novice:</b></li>
<li class="list-group-item">JavaScript</li>
<li class="list-group-item">unit testing</li>
</ul>
</div>
<div class="col-sm-4">
<ul>
<li class="list-group-item"style="text-align: center"><b>No Experience:</b></li>
<li class="list-group-item">Ruby</li>
</ul>
</div>
</div>
</div>
</div>
<br>
<footer class="panel-footer">
<div class="container">
<div class="row">
<span class="h3 small" style="text-align: center">mburke@wpi.edu • linkedin.com/madeline-burke</span>
</div>
</div>
</footer>
</body>
</html>