Initial commit - creates new HTML, CSS, and PHP files for terminal emulator

This commit is contained in:
2024-07-14 13:42:57 +08:00
parent ee4c88144b
commit 73da778412
3 changed files with 45 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<!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>
+4
View File
@@ -0,0 +1,4 @@
body {
background-color: black;
color: white;
}
+18
View File
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- <meta http-equiv="refresh" content="2"> -->
<title>frame</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<?php
$output_str = "Welcome to the terminal!<br/>Type 'help' to see a list of commands.<br/>";
echo $output_str;
?>
</body>
</html>