-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
52 lines (47 loc) · 1.7 KB
/
resume.html
File metadata and controls
52 lines (47 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume/CV - Arun Roshan</title>
<link rel="stylesheet" href="resume.css">
</head>
<body>
<header>
<div class="container">
<h1>Welcome to Arun Roshan's Portfolio</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="achive.html">Achievement</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="blog.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="resume">
<div class="container">
<h2 style="margin-top: 3%; margin-bottom: 3%;">Resume</h2>
<div class="resume-links">
<p>Download My Resume:</p>
<a href="Arun Roshan Resume.pdf" class="btn" target="_blank">Download</a>
</div>
<div class="resume-links">
<p>LinkedIn Profile:</p>
<a href="https://www.linkedin.com/in/arun-roshan-120958210" class="btn" target="_blank">Connect on LinkedIn</a>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Arun Roshan. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>