29 lines
670 B
HTML
29 lines
670 B
HTML
<!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>
|