forked from sabamerchant/girls.code-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
63 lines (55 loc) · 2.71 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
58
59
60
61
62
63
<!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">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<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>Justin Moon | Resume</title>
<link rel="icon" type="image/x-icon" href="images/favicon.svg">
</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">Justin Moon</a>
<button class="navbar-toggler navbar-light" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<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>
<a class="nav-item nav-link" href="projects.html">Projects</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;">
© Justin Moon 2021. All Rights Reserved. Users must be 18 and older.
<!-- <a class="text-dark" href="index.html">Nereus</a> -->
</div>
</footer>
</html>