html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>HTML iframe</title>
</head>
<body>
<iframe src="https://www.azlyrics.com" title="Your all time lyrics library" <!--sandbox="allow-modals allow-popups allow-same-origin allow-scripts allow-top-navigation" referrerpolicy="strict-origin"--> ></iframe>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
body
{
margin: 0;
padding: 0;
}
iframe
{
border: none;
margin: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run