Files
browser-terminal/index.html
T

23 lines
394 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Terminal</title>
<style>
.full-screen-iframe {
width: 100%;
height: 100%;
border: none;
}
body {
background-color: black;
}
</style>
</head>
<body>
<iframe src="./terminal.php" class="full-screen-iframe"></iframe>
</body>
</html>