💻 Código HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="author" content="Jostyn Vy">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Etiquetas HTML 5</title>
</head>
<body>
    <h1>Etiquetas <abbr tittle="HyperText Markup Language" >HTML </abbr> 5</h1>
    <div>
       <img src="img/etiquetasHTML5.jpg"
            alt = "Listado etiquetas HTML5"
            usemap = "#image-map">
    </div>
    
 <map>
     <area target="_parent"
     alt="etiqueta coldgroup" 
     title="etiqueta coldgroup" 
     href="https://html.spec.whatwg.org/multipage/"
     coords="955,274,774,280,874,295,935,294,946,291,947,285,951,288" 
     shape="poly">
 </map>

 <map>  
     <area target="_blank"
     alt="etiqueta html5"
     title="etiqueta html5"
     href="https://html.spec.whatwg.org/multipage/"
     coords="935,146,1164,56" 
     shape="rect">
 </map>

 <map> 
    <area target="_self"
     alt="etiqueta html4" 
     title="etiqueta html4" 
     href="https://html.spec.whatwg.org/multipage/" 
     coords="1187,218,59" 
     shape="circle">
</map>

</body>
</html>

📸 Resultado del ejercicio

Resultado ⬅ Volver