Google Dokumendi Embed
body {
margin: 0;
padding: 0;
}
.container {
width: 100%;
display: flex;
justify-content: center;
}
.google-doc {
width: 90%;
min-height: 500px;
border: none;
}
function adjustHeight() {
var iframe = document.getElementById("googleDoc");
iframe.style.height = window.innerHeight + "px";
}
window.addEventListener("resize", adjustHeight);