mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
17 lines
433 B
HTML
17 lines
433 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>img element ismap activation test</title>
|
|
</head>
|
|
<body>
|
|
<p>Click my nose to get the coordinates!</p>
|
|
<a href="test_img_ismap.html">
|
|
<img src="andreas.jpeg" alt="andreas" ismap/>
|
|
</a>
|
|
<p>Nothing happends if you click my nose</p>
|
|
<a href="test_img_ismap.html">
|
|
<img src="andreas.jpeg" alt="andreas"/>
|
|
</a>
|
|
</body>
|
|
</html>
|