-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresumePDF.html
More file actions
53 lines (45 loc) · 1.91 KB
/
Copy pathresumePDF.html
File metadata and controls
53 lines (45 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<title>Chad Mc Adams Portfolio</title>
<link rel="icon" href="chadFavicon.jpg">
<link rel="stylesheet" type="text/css" href="css/site.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
</head>
<body>
<div class="container">
<header class="d-flex justify-content-center py-3">
<ul class="nav nav-pills">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle active" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Resumes</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item active" aria-current="page" href="#">PDF</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="Resume.docx">DOCX</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="game.html">Game</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
</ul>
</header>
</div>
<div class="centerDiv">
<h1>My PDF Resume</h1>
<h2 id="best">Welcome!</h2>
<object
type="application/pdf"
data="Resume.pdf"
width="750"
height="900"
>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body>
</html>