initial commit

This commit is contained in:
2025-09-17 23:05:25 -04:00
commit ee78eef527
17 changed files with 610 additions and 0 deletions

28
startpage/index.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="icon" type="image/png" href="../icons/misc.png">
<title>Startpage</title>
</head>
<body>
<header>
<h1 id="clock" style="margin-bottom:0;"></h1>
<p id="date" style="margin-top:0;"></p>
</header>
<p id="search-results">
<div id="search">
<input
type="text"
id="search-bar"
value="fetch"
placeholder="run man for more info"
autofocus
>
</div>
</p>
</body>
<script type="module" src="./index.js"></script>
</html>