html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<!-- checks embedded browser (Chromium/WebView)...
not everyone may support animation (Android < 4.4).
Change 'height' to 350px; (etc) if it's
got the wrong size [CSS] tab.
BASIC and TINY versions for mobile screen sizes!
For Q&A:
https://www.sololearn.com/Discuss/458082/?ref=app
-->
<iframe src="https://www.w3.org/Graphics/SVG/Test/20061213/"></iframe>
</body>
</html>=
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
body {
margin:0px;
height:100%;
}
iframe {
width:100%;
height:100vh; /* 100% doesn't work */
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run