-
Notifications
You must be signed in to change notification settings - Fork 0
/
test2.html
33 lines (31 loc) · 811 Bytes
/
test2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Resume</title>
<link rel="stylesheet" href="style.css" />
<style>
.resume-container {
width: 100%;
height: 80vh; /* Adjust the height as needed */
}
iframe {
width: 100%;
height: 100%;
}
/* Optional: Responsive Design */
@media (max-width: 768px) {
.resume-container {
height: 90vh; /* Adjust for smaller screens */
}
}
</style>
</head>
<body>
<div class="resume-container">
<iframe src="JANAK_MALLIK_RESUME.pdf" title="Resume" frameborder="0"></iframe>
</div>
<script src="script.js"></script>
</body>
</html>