-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
104 lines (104 loc) · 4.82 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Manish Kumar | Tech-Geek</title>
<!-- Font Awesome kit code -->
<script src="https://kit.fontawesome.com/2dbc6c389c.js" crossorigin="anonymous"></script>
<!-- Custom font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,600&family=Playfair+Display:ital,wght@0,900;1,900&display=swap" rel="stylesheet">
<!-- Icon added to the title bar -->
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="img/site.webmanifest">
<!-- Stylesheet -->
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<!-- Neta data -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body>
<header>
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
<a class="flex font-medium items-center mb-4 md:mb-0">
<img src="img/android-chrome-64x64.png" alt="Logo">
<span class="ml-3 text-xl">Manish Kumar</span>
</a>
<nav class="md:ml-auto md:mr-auto flex flex-wrap items-center text-base justify-center">
<a class="mr-5 py-2 px-4" href="index.html">Home</a>
<a class="mr-5 py-2 px-4" href="about.html">About</a>
<a class="mr-5 py-2 px-4" href="resume.html">Resume</a>
<a class="mr-5 py-2 px-4" href="blog.html">Blog</a>
</nav>
<button class="inline-flex items-center border-0 py-2 px-4 focus:outline-none rounded text-base mt-4 md:mt-0" onclick="godown()">Contact-me
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-1" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
</div>
</header>
<section>
<div class="container mx-auto flex px-5 py-24 items-center justify-center flex-col">
<object data="img/ManishKumarCV.pdf" type="application/pdf" class="resume lg:w-4/6 md:w-3/6 w-5/6 mb-10 object-cover object-center">
<p>It appears you don't have a PDF plugin for this browser.
No biggie... you can download the PDF file here.<br><br><a href="img/ManishKumarCV.pdf" class="style underline">Download</a>
</p>
</object>
</div>
</section>
<section class="relative">
<div class="container px-5 py-24 mx-auto justify-center">
<div class="flex flex-col text-center w-full mb-12">
<h1 class="sm:text-3xl text-2xl mb-4">CONTACT ME</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">Have a project in mind? Get in touch today!</p><br>
<a href="mailto:manish009kumar112@gmail.com" id="contact"><p class="lg:w-2/3 mx-auto leading-relaxed text-base underline">manish009kumar112@gmail.com</p></a>
</div>
</div>
</section>
<footer>
<div class="container px-5 py-8 mx-auto flex items-center sm:flex-row flex-col">
<a class="flex items-center md:justify-start justify-center">
<img src="img/android-chrome-64x64.png" alt="Logo">
<span class="ml-3 text-xl">Manish Kumar</span>
</a>
<p class="text-sm sm:ml-4 sm:pl-4 sm:border-l-2 sm:py-2 sm:mt-0 mt-4">© 2021 Manish Kumar
</p>
<span class="inline-flex sm:ml-auto sm:mt-0 mt-4 justify-center sm:justify-start">
<a href="https://github.com/crucio-009">
<i class="fab fa-github"></i>
<span class="sr-only">Github</span>
</a>
<a class="ml-3" href="mailto:manish009kumar112@gmail.com">
<i class="far fa-envelope"></i>
<span class="sr-only">Gmail</span>
</a>
<a class="ml-3" href="https://www.facebook.com/profile.php?id=100007900830784">
<i class="fab fa-facebook-f"></i>
<span class="sr-only">facebook</span>
</a>
<a class="ml-3" href="https://www.instagram.com/_m.a.n.i.s.h.0.0.9_/">
<i class="fab fa-instagram"></i>
<span class="sr-only">Instagram</span>
</a>
<a class="ml-3" href="https://www.linkedin.com/in/manish009">
<i class="fab fa-linkedin-in"></i>
<span class="sr-only">Linkedin</span>
</a>
<a class="ml-3" href="https://t.me/mkumar009">
<i class="fab fa-telegram"></i>
<span class="sr-only">Telegram</span>
</a>
</span>
</div>
</footer>
<script>
function godown() {
location.href = "#contact";
}
</script>
</body>
</html>