-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResume.html
139 lines (126 loc) · 3.07 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume-Nimesh Maslekar</title>
<link rel="icon" type="image/x-icon" href="/favicon.png">
<style>
body {
background-color: rgb(0, 0, 33);
color: white;
font-family: 'Poppins', sans-serif;
}
/* Resume */
.pdf {
display: flex;
justify-content: space-around;
align-items: stretch;
margin: 50px 50px;
width: 90%;
height: 1000px;
}
.pageIcon{
background-color: white;
width: 40px;
margin : 0px 30px;
}
.container >h1 {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.container >h1:hover {
color: rgb(125, 125, 212);
}
footer{
position: relative;
width: 100%;
background-color: #11284a;
min-height: 100px;
padding: 20px 50px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: url("https://gifdb.com/images/high/upbeat-music-sound-wave-1uotbww4xs4eka6o.gif");
}
footer .social_icon, footer .menu{
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin: 10px 0px;
flex-wrap: wrap;
}
footer .social_icon li,
footer .menu li{
list-style: none;
}
footer .social_icon li a{
font-size: 2em;
color: #fff;
margin: 0 10px;
display: inline-block;
transition: 0.5s;
}
footer .menu li a{
font-size: 1.2em;
color: #fff;
margin: 0 10px;
display: inline-block;
text-decoration: none;
opacity: 0.75;
}
footer .menu li a:hover{
opacity: 1;
}
footer .social_icon li a:hover{
transform: translate(-10px);
}
footer p{
color: #fff;
text-align: center;
margin-top: 15px;
margin-bottom: 10px;
font-size: 1.1em;
}
footer .wave{
position: absolute;
top: -100px;
left: 0;
width: 100%;
height: 100px;
background: url(wave.png) ;
background-size: 1000px 100px;
}
</style>
<script src='https://kit.fontawesome.com/a076d05399.js' crossorigin='anonymous'></script>
</head>
<body>
<!-- Resume -->
<div class="container">
<h1>My Resume <img class="pageIcon" src="/resumeicon.png"></h1>
<i class='far fa-file-alt' style='font-size:48px;color:red'></i></h1>
<object class="pdf" data="/Nimesh_Maslekar-Resume.pdf.pdf" width="800" height="500">
</object>
</div>
<footer>
<ul class="social_icon">
<li><a href="#"><ion-icon name="logo-facebook"></ion-icon></a></li>
<li><a href="#"><ion-icon name="logo-twitter"></ion-icon></a></li>
<li><a href="#"><ion-icon name="logo-linkedin"></ion-icon></a></li>
<li><a href="#"><ion-icon name="logo-github"></ion-icon></a></li></li>
</ul>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">item3</a></li>
<li><a href="#">Resume</a></li>
<li><a href="#">Contact me</a></li>
</ul>
<p>© 2022 Nimesh Maslekar | All rights reserved.</p>
</footer>
</body>
</html>