metasearch/index.html

24 lines
596 B
HTML
Raw Normal View History

2023-10-14 12:41:06 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="referrer" content="no-referrer">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#info { color: gray; }
#info.error { color: red; }
</style>
<script type="module" src="index.js"></script>
</head>
<body>
<div class="search-box">
<form id="search">
<input name="query" type="text" placeholder="Query">
<input type="submit" value="Search">
</form>
<p id="info"></p>
</div>
</body>
</html>