Files
win32.run/static/html/notepad/iframe.html
2023-02-13 19:32:10 +07:00

24 lines
517 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#wrapper {
position: absolute;
inset: 15px;
}
</style>
</head>
<body>
<div id="wrapper">
<iframe src="index.html" style="width: 100%;height: 100%;" frameborder="0">
</iframe>
</div>
</body>
</html>