Skip to content

Instantly share code, notes, and snippets.

@bag-man
Last active August 29, 2015 14:19
Show Gist options
  • Save bag-man/128a97fb521cbae70094 to your computer and use it in GitHub Desktop.
Save bag-man/128a97fb521cbae70094 to your computer and use it in GitHub Desktop.
CV Viewer
<!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