-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
21 lines (18 loc) · 751 Bytes
/
main.html
File metadata and controls
21 lines (18 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Main</title>
</head>
<body>
<h1 style="text-align: center;"><b>Map</b></h1>
<map name="mapname">
<area shape="rect" coords="150,246,43,175" href="Rajasthan.html" alt="alttext">
<area shape="poly" coords="321,218,268,206,260,256,313,254" href="Bihar.html" alt="alttext">
<area shape="poly" coords="196,444,136,480,153,539,192,500" href="TamilNadu.html" alt="alttext">
</map>
<img src="India.jpg" style="display: block; margin-left: auto; margin-right: auto;" usemap="#mapname">
</body>
</html>