Sven Mintel
Mitglied
Mit reinem HTML bleibt dir nur eine Möglichkeit--> mein Beitrag weiter oben war ernst gemeint

Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type"
content="application/xhtml+xml; charset=UTF-8" />
<title>Testformular</title>
<style type="text/css">
#ortswahl {
font-family:Arial, sans-serif;
width:300px;
background:#eee;
border:1px #000 solid;
padding:10px;
height:100px;
}
#ortswahl form {
padding:0;
margin:0;
}
#city {
width:160px;
position:absolute;
margin-top:20px;
margin-left:10px;
}
#street {
width:160px;
position:absolute;
margin-top:70px;
margin-left:10px;
}
#search {
width:100px;
position:absolute;
margin-top:70px;
margin-left:180px;
}
#changeCity {
width:100px;
position:absolute;
margin-top:20px;
margin-left:180px;
}
#labelCity {
font-size:10px;
width:200px;
position:absolute;
margin-top:5px;
margin-left:10px;
}
#labelStreet {
font-size:10px;
width:200px;
position:absolute;
margin-top:55px;
margin-left:10px;
}
</style>
</head>
<body>
<div id="ortswahl">
<form action="./" method="get">
<div>
<div id="labelCity">
Stadt
</div>
<input id="city" type="text" name="stadt" value="" />
<div id="labelStreet">
Startpunkt (Straße eingeben)
</div>
<input id="street" type="text" name="strasse" value="" />
<input id="search" type="submit" name="action"
value="Suche" />
<input id="changeCity" type="submit" name="action"
value="Stadt ändern" />
</div>
</form>
</div>
</body>
</html>