-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<!-- Dont worry too much about this head stuff, you'll find out more about it in time-->
<title>Something of your Own</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<link rel="stylesheet" href="./your-site.css" />
</head>
<body>
<!-- This is where you do the work -->
<main>
<header>
<div id='header-image-window'>
<img id='header-image' src='header-image.jpeg'>
</div>
<div id='brand-name'>
<h1>Rob Mitchell</h1>
</div>
</header>
<div id='content'>
<header>
<h2 id='bio'>Bio</h2>
</header>
<div id='biography'>
<p id='bio-text'>I am currently an MS Candidate in
Computational Analysis and Public Policy at the
Harris school of Public Policy at the University of
Chicago. I am currently completing my degree
remotely while studying in Pittsburgh, and am
looking for jobs in data.
</p>
<p id='bio-text'>While I am searcing for roles in the
public, private, and non-profit sector, I am
particularly interested in areas in and around
progressive-leaning policy and politics. My policy
interests revolve around voting rights and election
systems, and I have experience working in technical
roles with political partners.
</p>
</div>
</div>
</main>
</body>
</html>