Skip to content

Instantly share code, notes, and snippets.

@ratacibernetica
Created May 26, 2018 04:02
Show Gist options
  • Save ratacibernetica/9141592bc25a820aff4b5ac8da63c0c8 to your computer and use it in GitHub Desktop.
Save ratacibernetica/9141592bc25a820aff4b5ac8da63c0c8 to your computer and use it in GitHub Desktop.
embedded google doc, able to print (sorta)
<html>
<head>
<title>Mi super CV </title>
<style>
iframe{
top:0px; left:0px; bottom:0px; right:0px; width:100%; height:4000px; border:none; margin:0; padding:0; overflow:hidden; z-index:-1;
}
@media print {
.page-break {
display: block;
page-break-before: always;
}
button{
display: none;
}
@page {
size: auto; /* auto is the initial value */
margin: 0; /* this affects the margin in the printer settings */
}
}
</style>
</head>
<body>
<button onclick="window.print()">🖨️</button>
<iframe
style=""
src="https://docs.google.com/document/d/e/2PACX-1vR_SWR2TJ5CAAEtEaB_9Y7P-DxWCk-mBcXSG8RU1ZtaSjBNzSTZU-T-tG5G74YL-a1pifqgPpEQr5xd/pub?embedded=true"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment