[HTML] Imagemap code

Maite
Hi
Was ist den bei meinen Code falsch?
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
<html>

<body>

<p align="center">

<map name="Hofplan">

<area shape=Viereck coords="145x108,147x107,145x101,145x107" href="Hofplan.html">

</map>
<img src="http://img152.imageshack.us/img152/7465/planmaitefn6.jpg" usemap="#Hofplan" border=0>

</body>
</html> 

Habe ihn so wie bei Imagemap coden mit Paint gehmacht.
Vlggroßes Grinsen
Verena1993
Probiers mal so;

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
<html>

<body>

<p align="center">

<map name="Hofplan">

<area shape=Viereck coords="145,108,107,101" href="Hofplan.html">

</map>
<img src="http://img152.imageshack.us/img152/7465/planmaitefn6.jpg" usemap="#Hofplan" border=0>

</body>
</html> 



Hast die Coordinaten falsch angegeben... da darf kein x drin sein und sin beim viereck nur 4 fröhlich

ich hoffe ich hab die richtigen entfernt^^
Maite
Danke es geht aber immer noch nichtunglücklich
http://vrhlivius.vr.funpic.de---> Hoplan da will ich das man auf dem Reitplatz klicken muss und weitergeleitet wird.
Vlgsmile
Verena1993
auf welchen reitplatz?
anna.
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
<html>

<body>

<p align="center">

<map name="Hofplan">

<area shape="rect" coords="145,108,107,101" href="Hofplan.html">

</map>
<img src="http://img152.imageshack.us/img152/7465/planmaitefn6.jpg" usemap="#Hofplan" border="0">

</body>
</html> 


probiers mal so..

edit..
es würde funktionieren, allerdings stimmen die koordinaten nicht ..^^

diese bringen dich hierher (rot markiert)


nochmal edit: mit richtigen koordinaten:
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
<html>

<body>

<p align="center">

<map name="Hofplan">

<area shape="rect" coords="413,33,561,140" href="Hofplan.html">

</map>
<img src="http://img152.imageshack.us/img152/7465/planmaitefn6.jpg" usemap="#Hofplan" border="0">

</body>
</html>