1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-29 06:26:02 +00:00

Test image map rect

This commit is contained in:
Yan Maniez 2019-12-28 01:46:09 +01:00
parent eafa50445a
commit 0279c234b4

View file

@ -1,8 +1,14 @@
<html>
<body>
<img src="alarian.png" alt="Alarian" usemap="#alarian">
<map name="alarian">
<area shape="circle" coords="643,853,5" alt="Abod" href="javascript:alert('Abod')" title="Abod">
</map>
</body>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Alarian</title>
</head>
<body>
<img src="alarian.png" alt="Alarian" usemap="#alarian">
<map name="alarian">
<area shape="rect" coords="862,419,877,434" alt="Shaïa Daod" href="javascript:alert('Shaïa Daod')" title="Shaïa Daod">
<area shape="circle" coords="643,853,5" alt="Abod" href="javascript:alert('Abod')" title="Abod">
</map>
</body>
</html>