16 lines
386 B
HTML
16 lines
386 B
HTML
<!DOCTYPE html>
|
|
|
|
<!-- Demonstrates additional form attributes -->
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<title>search</title>
|
|
</head>
|
|
<body>
|
|
<form action="https://www.google.com/search" method="get">
|
|
<input autocomplete="off" autofocus name="q" placeholder="Query" type="search">
|
|
<button>Google Search</button>
|
|
</form>
|
|
</body>
|
|
</html>
|