33 lines
805 B
HTML
33 lines
805 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<script src="js/commands.js" defer></script>
|
|
<script src="js/script.js" defer></script>
|
|
<script src="js/data.js" defer></script>
|
|
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<link rel="icon" href="assets/logo.png">
|
|
<title>sador</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container">
|
|
<div>
|
|
<h1>welcome to my website</h1>
|
|
<h2 id="switch_theme">switch theme</h2>
|
|
|
|
<p>type <span id="help">'help'</span> to list all commands</p>
|
|
<span>[guest@website ~]$ </span>
|
|
<input type="text" id="command">
|
|
</div>
|
|
<div id="result">
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |