Files
Terminal-Website/httpdocs/index.html
2024-02-06 11:27:58 +01:00

32 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Title</title>
<link rel="icon" href="icon.png" type="image/icon type">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="main">
<div id="terminal">
<div class="terminalLine">
<span class="responseText">
HerpDerpOS Terminal - Version 1.0<br>
If you have limited linux knowledge, or you want to see the command list. Please type "help" to see all available commands.<br>
For system information, use "info".<br><br>
Welcome, and happy coding!<br><br>
</span>
</div>
</div>
</div>
<script src="js/terminal.js"></script>
</body>
</html>