-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
42 lines (41 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="resume.css">
</head>
<body>
<!-- navbar -->
<nav>
<div class="container1">
<img src="icons/resume.png" alt="logo" width="50" height="50">
<h3 class="h3">PortFolio</h3>
</div>
<div class="container2">
<ul>
<li><a class="nav-link active" aria-current="page" href="index.html"><strong>Home</strong></a></li>
<li><a class="nav-link active" aria-current="page" href="aboutme.html"><strong>About Me</strong></a></li>
<li><a class="nav-link active" aria-current="page" href="skills.html"><strong>Skills</strong></a></li>
<li><a class="nav-link active" aria-current="page" href="resume.html"><strong>Resume</strong></a></li>
<li><a class="nav-link active" aria-current="page" href="contact.html"><strong>Contact</strong></a></li>
</ul>
</div>
</nav>
<!-- resume -->
<div class="resume">
<img src="icons/cv_background-transformed.jpeg" alt="bg" class="bg">
<div>
<h1 class="resumeh1"><a class="nav-link active" aria-current="page" href="resume.html"><strong>Resume</strong></a></h1>
<button class="cta" type="button">
<span>
<a class="nav-link active" aria-current="page" href="https://drive.google.com/file/d/1QuUYNo3uEKhqi8C8Kefldtta9PCYUorX/view?usp=sharing">Download</a>
</span>
</button>
</div>
</div>
</body>
</html>