-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
45 lines (41 loc) · 1.71 KB
/
experience.html
File metadata and controls
45 lines (41 loc) · 1.71 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Personal Profile Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<nav class="main-nav">
<ul class="nav">
<li class="name">Brian Walker</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<header>
<img src="images/me2.jpg" alt="Picture of Brian Walker" class="profile-image">
<h1 class="tag name">Hello, I’m Brian.</h1>
<p class="tag location">My home is Detroit, Michigan.</p>
</header>
<main class="flex">
<section class="card" id="resume">
<h2>Resume</h2>
<p>A preview of my resume can be found below. You can open the full file <a href="images/resume.pdf">here.</a>
<!-- iframe from https://www.w3docs.com/snippets/html/how-to-embed-pdf-in-html.html -->
<iframe class="resume" src="images/resume.pdf" height="600"></iframe>
</section>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/Insomniac_Mike" class="social twitter">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/bwalker206/" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/bwalker206" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2020, Brian Walker</p>
</footer>
</body>
</html>