-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
54 lines (53 loc) · 1.95 KB
/
experience.html
File metadata and controls
54 lines (53 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href="style.css"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Experience</title>
</head>
<body>
<nav>
<ul>
<a hover class="nav-item" href="index.html">About</a>
<a hover class="nav-item" href="skills.html">Skills</a>
<a hover class="nav-item" href="education.html">Education</a>
<a class="nav-current">Experience</a>
<a hover class="nav-item" href="interests.html">Interests</a>
</ul>
</nav>
<main>
<div class="main-left">
<img src="https://static.wikia.nocookie.net/parody/images/f/fd/Rick-Astley.jpg" alt="Rick Astley">
<h1>Rick Astley</h1>
<h3>Singer, Songwriter</h3>
<p>rick.astley@meme.com</p>
</div>
<div class="main-right">
<h1>Experience</h1>
<div id="alt-container">
<div id="alt-left">
<p id="title">Software Developer</p>
<p>Facebook</p>
<br>
<p id="title">Web Developer</p>
<p>Amazon</p>
</div>
<div id="alt-right">
<p id="date">2018-Present</p>
<p>Menlo Park, CA</p>
<br>
<p id="date">2016-2018</p>
<p>Vancouver, BC</p>
</div>
</div>
<p style="font-size:120%;margin-top: 60px;">
Download my full resume <a hover href="FinResume.pdf" target="_blank">here</a>.
</p>
</div>
</main>
<footer>
©FindlayMB 2023
</footer>
</body>
</html>