-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 863 Bytes
/
index.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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tenishchev Semen CV</title>
<style>
html {
height: 100%
}
body {
height: 100%;
width: 100%;
margin: 0;
display: table;
}
.header_bar {
display: table-row;
}
.iframe_container {
height: 100%;
display: table-cell;
}
iframe {
height: 100%;
width: 100%;
display: block;
}
</style>
</head>
<body>
<object data="https://tenischev.github.io/cv/cv.pdf" type="application/pdf" height="100%" width="100%">
<iframe src="https://docs.google.com/viewer?url=https://tenischev.github.io/cv/cv.pdf&embedded=true"
height="100%" width="100%"></iframe>
</object>
</body>
</html>