|
<!DOCTYPE
html> <html lang="en"> <head>
<meta charset="UTF-8">
<title>Appeals Sheet</title>
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<style>
/* Make the iframe fill the screen */
body, html {
margin: 0;
padding: 0;
height: 100%;
}
.sheet-container {
position: relative;
width: 100%;
height: 100vh; /* Full screen height */
overflow: hidden;
}
.sheet-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
overflow: auto;
}
</style> </head> <body>
<div class="sheet-container">
<iframe
src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQuHgeOw1lMfiXMZ55k0K8GPhsIO3lJK-CbF4sR1hXdIverZd7pwOGEzi5TisWSFFiAClGKmUU94HAt/pubhtml?gid=1412740244&single=true&widget=true&headers=false">
</iframe>
</div> </body> </html>
Disclaimer
|