Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<map name="menu">
<area shape="rect" coords="34,99,130,102" href="Topic1.html">
<area sh........>
...
</map>
<p><img src="menubar.gif" border="0" usemap="#menu" /></p>
Hallo,
Ich möchte ein select-Menü nur mit Bildern erstellen (auch mit links)
<style type="text/css">
option[value=en]:before { content:url("http://www.html.de/images/flags/en.gif"); }
option[value=de]:before { content:url("http://www.html.de/images/flags/de.gif"); }
</style>
<select name="country">
<option value="0" selected="selected">--- bitte wählen ---</option>
<option value="en" >englisch</option>
<option value="de" >deutsch</option>
</select>