#HTML #Snippets July 09, 2023
HTML: Fullscreen Iframe Template
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Page Title</title>
<link rel="shortcut icon" type="image/png" href="../assets/favicons/favicon.ico">
</head>
<body style="margin:0px;padding:0px;overflow:hidden">
<iframe src="https://example.com" frameborder="0" style="overflow:hidden;height:100%;width:100%" height="100%" width="100%"></iframe>
</body>
</html>