Files
Terminal-Website/httpdocs/index.html
2024-01-17 14:40:17 +01:00

39 lines
1.5 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="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>
Type "help" to see all available commands.<br>
For system information, use "info".<br><br>
Welcome, and happy coding!<br><br>
</span>
</div>
<div class="terminalLine activeLine">
<h4 class="pathText"></h4>
<h4 class="pathColon">:</h4>
<h4 class="pathPath">~/projects</h4>
<h4 class="pathDollar">$</h4>
<input class="terminalInput" type="text" id="terminalInput" value="">
<div class="pathBlinky"></div>
</div>
</div>
</div>
<script src="js/terminal.js"></script>
</body>
</html>