Beispiel:Benutzerfreundliches Suchformular6.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1.0;" />
		<link rel="stylesheet" type="text/css" media="screen" href="./Beispiel:SELFHTML-Beispiel-Grundlayout.css" />
		<title>benutzerfreundliches Google-Suchformular</title>
	</head>
	<body>
		<h1>benutzerfreundliches Google-Suchformular</h1>
		<main>
			<form action="https://google.de/search">
				<input name="q" aria-label="Suchbegriff">
				<button>finden</button>
			</form>
		</main>
	</body>
</html>