-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathresume.html
57 lines (49 loc) · 2.16 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
55
56
57
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="resume.css">
<link href='https://fonts.googleapis.com/css?family=Nunito' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<title>Name | Home</title>
</head>
<body>
<!-- This is our tool bar at the top thats consistent to all pages. Allows users to jump page to page easily. -->
<nav class="navbar navbar-expand-lg navbar-light bg-light px-5">
<a class="navbar-brand" href="index.html">Name.</a>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="aboutme.html">About Me</a>
<a class="nav-item nav-link" href="resume.html">Resume</a>
<a class="nav-item nav-link" href="contact.html">Contact</a>
</div>
</div>
</nav>
<!-- these divs with containers work with bootstap and allow us to style the pages in blocks like we have done. -->
<div class="px-4 py-5 text-center border-bottom bgimg">
<h1 class="display-4 fw-bold">Resume</h1>
<div class="col-6 mx-auto">
<!-- <embed src="resume.pdf" width="800px" height="2100px" /> -->
<iframe src="resume.pdf#toolbar=0" width="100%" height="840px">
</iframe>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
</div>
</body>
<footer class="text-center text-lg-start bg-light text-muted">
<div class="text-center p-3" style="background-color: #edededcc;font-size: small;">
© YOUR NAME 2021. All Rights Reserved. Users must be 18 and older.
<!-- <a class="text-dark" href="index.html">Nereus</a> -->
</div>
</footer>
</html>