about map and area tag

Viewed 33

Area tag don't work in my html codes.

 <!--images-->
    <img
      align="center"
      src="C:\Users\RS\Pictures\fotoshop\ananimous.png"
      alt="ananimouse"
      width="750"
      usemap="hacker"
    />
    <!--map . with using image-map.net-->
    <map name="hacker">
      <area
        target="_blank"
        alt="anonymouse"
        title="anonymouse"
        href="https://en.wikipedia.org/wiki/Anonymous_(hacker_group)"
        coords="785,495,501,614"
        shape="rect"
      />
      />
    </map>
1 Answers

Add # in the beginning of the image name.

<img
      align="center"
      src="https://picsum.photos/200/300"
      alt="ananimouse"
      width="750"
      usemap="#hacker"
    />
    <!--map . with using image-map.net-->
    <map name="hacker">
      <area
        target="_blank"
        alt="anonymouse"
        title="anonymouse"
        href="https://en.wikipedia.org/wiki/Anonymous_(hacker_group)"
        coords="785,495,501,614"
        shape="rect"
      />
    </map>

Related