28 lines
652 B
HTML
28 lines
652 B
HTML
|
<!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>
|
||
|
|