แอตทริบิวต์ type ขององค์ประกอบ ตั้งค่าประเภท MIME (ส่วนขยายจดหมายทางอินเทอร์เน็ตอเนกประสงค์) ของ URL เป้าหมาย ต่อไปนี้เป็นไวยากรณ์ -
<area type="type_of_media">
ด้านบน type_of_media เป็นประเภทสื่อมาตรฐานของเอกสารที่เชื่อมโยง เช่น image/bmp, image/tiff, image/tff เป็นต้น
ให้เราดูตัวอย่างการใช้แอตทริบิวต์ type ขององค์ประกอบ -
ตัวอย่าง
<!DOCTYPE html> <html> <body> <h2>Learning</h2> <p>Learn these technologies with ease....</p> <img src = /images/usemap.gif alt = "usemap" border = "0" usemap = "#tutorials"/> <map name = "tutorials"> <area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27" href = "/perl/index.htm" alt = "Perl Tutorial" download="perl" hreflang="en"/> <area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial" href = "/html/images/test.png" type="image/png" /> <area shape = "circle" coords = "73,168,32" alt = "PHP Tutorial" href = "/php/index.htm" target = "_blank" download="php" hreflang="en"/> </map> </body> </html>
ผลลัพธ์
ตอนนี้ เมื่อคุณจะคลิกที่พื้นที่ HTML รูปภาพ png ต่อไปนี้จะมองเห็นได้ เราได้ตั้งค่าประเภทสื่อเป็นรูปภาพ/png ให้เหมือนกัน -