personal-website/index.html

30 lines
804 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">
<h1>welcome to my website</h1>
<h2 id="switch_theme">switch theme</h2>
<p>press <kbd>Enter</kbd> to run command</p>
<p>use 'help' to list all commands</p>
<span>[guest@website ~]$ </span>
<input type="text" id="command" value="help">
<div id="result">
</div>
</div>
</body>
</html>