personal-website/index.html

34 lines
861 B
HTML
Raw Normal View History

2024-04-20 09:13:46 -05:00
<!DOCTYPE html>
<html lang="en">
2024-04-20 09:13:46 -05:00
<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>
2024-04-20 09:13:46 -05:00
<body>
<div id="container">
2024-05-08 13:51:47 -05:00
<div>
<h1>welcome to my website</h1>
<h2 id="switch_theme">switch theme</h2>
2024-05-08 13:51:47 -05:00
<p>press <kbd>Enter</kbd> to run command</p>
<p>use <span id="help">'help'</span> to list all commands</p>
<span>[guest@website ~]$ </span>
<input type="text" id="command">
</div>
2024-04-20 09:13:46 -05:00
<div id="result">
</div>
</div>
</body>
2024-04-20 09:13:46 -05:00
</html>