blob: ae6dbac6f759eb28927c8915798663382359cfd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title><map></title>
</head>
<body>
<!-- is block, contains blocks and <area> -->
<map class="class" id="id" name="id" lang="en">
<h2>header</h2>
<p><area alt="text" href='foo' coords="1,2,3,4">p</p>
<p>text</p>
<p><area alt="text" href='foo' coords="3,2,5,4">p</p>
<p>text2</p>
</map>
<!-- can contain interactive -->
<map id='foo' name="foo">
<p><a>text</a></p>
<p><area alt="text" href='foo' coords="3,2,5,4">p</p>
</map>
<!-- map with flow content and flow parent -->
<div><map name=foo><p>foo</p></map></div>
</body>
</html>
|