-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
38 lines (35 loc) · 981 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Resume</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<div class="container">
<img src="Passport_size_photo.jpg" alt="">
<h1>Milap Makwana</h1>
<p>Web Developer</p>
</div>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="contact.html">Contact Information</a></li>
</ul>
</nav>
<section id="resume">
<div class="container">
<h2>Resume</h2>
<p>You can download my resume from <a href="https://drive.google.com/file/d/1Oo_5INJ3Yis1tWWsBMxnJ53TuuqkZN3k/view?usp=sharing" target="_blank">here</a>.</p>
</div>
</section>
<footer>
<div class="container">
<p>© 2023 Milap Makwana. All rights reserved.</p>
</div>
</footer>
</body>
</html>