-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
54 lines (49 loc) · 2.12 KB
/
resume.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
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About Me</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/CSS/style.css">
</head>
<!--This is where all the web content lives-->
<body>
<div class="container">
<div class="row header">
<!--this is a column that is the full width of the screen-->
<div class="col-lg-6 col-md-6 col-sm-12 name">
<h1>Courtney Tucker</h1>
</div>
<!--This is the header navigation-->
<div class="col-lg-6 col-md-6 col-sm-12 header-nav">
<nav class="nav">
<a class="nav-link" href="index.html">About Me</a> |
<a class="nav-link" href="portfolio.html">Portfolio</a> |
<a class="nav-link" href="https://www.linkedin.com/in/courtt3d/">LinkedIn</a> |
<a class="nav-link" href="contact.html">Contact</a> |
<a class="nav-link" href="resume.html">Resume</a>
</nav>
</div>
</div>
<!--This is the main content area-->
<div class="row title">
<div class="col-lg-12 col-md-12 col-sm-12 about">
<h2>Resume</h2>
</div>
</div>
<div class="row main">
<div class="col-lg-12 col-md-12 col-sm-12 description">
<iframe src="https://docs.google.com/gview?url=https://github.com/Ctucker9233/resume/raw/master/Profile.pdf&embedded=true" frameborder="0" style="width: 100%; min-height: 100vh;"></iframe>
</div>
</div>
<div class="row footer">
<div class="col-lg-12 col-md-12 col-sm-12">
<p>Copyright 2019</p>
</div>
</div>
</div>
</body>
</html>