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

HTML에서 영역의 모양 설정


모양 사용 HTML에서 영역의 모양을 설정하는 속성입니다. 다음 코드를 실행하여 모양 을 구현할 수 있습니다. 속성 -

예시

<!DOCTYPE html>
<html>
   <head>
      <title>HTML shape attribute</title>
   </head>
   <body>
      <img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/>
      <!-- Create Mappings -->
      <map name = "html">
         <area shape = "circle" coords = "154,150,59" href = "about/about_team.htm"
         alt = "Team" target = "_self" />
      </map>
   </body>
</html>