Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML에서 이미지를 서버 측 이미지 맵으로 설정하시겠습니까?


ismap 사용 HTML의 속성을 사용하여 이미지를 HTML의 서버측 이미지 맵으로 설정합니다.

예시

다음 코드를 실행하여 ismap을 구현할 수 있습니다. 속성 -

<!DOCTYPE html>
<html>
   <body>
      <a href="">
         <img src = "https://www.tutorialspoint.com/assets/videotutorials/courses/android_penetration_testing/380_course_203_image.jpg"
            alt="Android Penetration Testing"
            width = "300" height = "250" ismap>
      </a>
      <p>On clicking the coordinates is sent to the server as a URL query string.</p>
   </body>
</html>