Last active
August 29, 2015 14:19
-
-
Save bag-man/128a97fb521cbae70094 to your computer and use it in GitHub Desktop.
CV Viewer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Owen Garland</title> | |
<link rel="icon" type="image/x-icon" href="favicon.ico" /> | |
<style> | |
.pdf { | |
width: 100%; | |
height: 100%; | |
} | |
.container { | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
} | |
body { | |
overflow: hidden; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<object class="pdf" data="cv.pdf" type="application/pdf"> | |
<p>It appears you don't have a PDF plugin for this browser. | |
<a href="cv.pdf">Click here to download the PDF.</a></p> | |
</object> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment