forked from ashwin6cs/study-welfare-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathf9-3.html
28 lines (25 loc) · 1.76 KB
/
f9-3.html
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
28
<!DOCTYPE html>
<html>
<head>
<title>USEMAP Hyperlink Example</title>
<link rel="shortcut icon" sizes="200*200" type="image/x-icon" href="logo1.jpg">
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body style="background-color: aliceblue">
<h1 style="font: size 15px;font-family: 'Times New Roman';color:blue;text-align:center">India's Covid Status State Wise </h1>
<img src="india.jpg" alt="India Map" class="center" usemap="#india">
<map name="india">
<area shape="poly" coords="399,886,318,912,322,927,280,949,311,1068,355,1026,385,986,387,934,411,896" alt="Tamil Nadu" href="https://coronaclusters.in/tamil-nadu" target="_blank" title="Tamil Nadu">
<area shape="poly" coords="560,689,523,694,503,700,499,714,486,715,450,734,437,732,423,707,406,690,400,671,334,673,335,693,297,852,397,876,414,803,472,761" alt="Andhra Pradesh" href="https://coronaclusters.in/andhra-pradesh" target="_blank" title="Andhra Pradesh">
<area shape="poly" coords="317,711,262,743,255,754,236,756,211,767,209,789,209,820,204,827,221,896,285,937,337,887289,856,305,800,320,794,312,767,320,722" alt="Karnataka" href="https://covid19.karnataka.gov.in/english" target="_blank" title="Karnataka">
<area shape="poly" coords="220,899,235,905,238,914,270,942,290,991,299,990,298,1009,307,1022,296,1033,302,1051,291,1060,270,1028,267,1011,256,982,250,951,226,921," alt="Kerala" href="https://dashboard.kerala.gov.in/covid/" target="_blank" title="Kerala">
<area shape="poly" coords="185,784,198,793,208,805,202,827,191,809" alt="Goa" href="https://www.goa.gov.in/covid-19/" target="_blank" title="Goa">
</map>
</body>
</html>