meta-search/www/index.html

28 lines
652 B
HTML
Raw Permalink Normal View History

2025-01-24 21:46:33 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Meta Search</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='style.css'>
</head>
<body>
<div class="search-area">
<h1>Meta Search</h1>
<form method="post">
<input spellcheck="false" name="query" type="text" autofocus autocomplete="off">
<button type="submit">🔎</button>
</form>
</div>
</body>
</html>
<style>
.search-area {
margin: auto;
width: 50%;
margin-top: 10%;
}
</style>