Advertisement
gitman3

Things map

Mar 19th, 2024
595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.     <meta charset="utf-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <title>Registration</title>
  8. </head>
  9.  
  10. <body>
  11.     <center>
  12.         <img src="things.jpg" alt="things" usemap="#thingsmap" width="400" height="379">
  13.  
  14.         <map name="thingsmap">
  15.             <area shape="rect" coords="22,11, 122,62" alt="Rectangle" href="rectangle.htm">
  16.             <area shape="poly" coords="30,110, 87,78, 69,113, 81,139" alt="Polygon" href="polygon.htm">
  17.             <area shape="circle" coords="184,86,30" alt="Circle" href="circle.htm">
  18.         </map>
  19.  
  20.     </center>
  21. </body>
  22.  
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement