friuns/coder
244
1<!DOCTYPE html>2<html lang="en">3<head>4 <meta charset="UTF-8">5 <meta name="viewport" content="width=device-width, initial-scale=1.0">6 <title>Full Screen Iframe</title>7 <style>8 /* Remove padding and margin for body and html */9 html, body {10 margin: 0;11 padding: 0;12 height: 100%;13 }14 15 /* Make the iframe full screen and remove the border */16 iframe {17 position: absolute;18 top: 0;19 left: 0;20 width: 100%;21 height: 100%;22 border: none; /* Removes the border */23 margin: 0;24 padding: 0;25 overflow: hidden; /* Prevents scrollbars */26 }27 </style>28</head>29<body>30 31 <iframe src="https://aidark.net/" frameborder="0" scrolling="no"></iframe>32 33</body>34</html>35 