-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdescargar-mapa-imagenes.html
More file actions
28 lines (23 loc) · 1.33 KB
/
descargar-mapa-imagenes.html
File metadata and controls
28 lines (23 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Descagar Imágenes de un Mapa de Imágenes</title>
</head>
<body>
<h1>Descagar Imágenes de un Mapa de Imágenes</h1>
<img src="../Resources/images/navegadores.png" alt="Navegadores" usemap="#navegadores" width="821" height="152" />
<map id="navegadores" name="navegadores">
<area shape="rect" coords="0,0,157,147" href="explorer.png" alt="Internet Explorer" download="internet-explorer.png">
<area shape="rect" coords="164,0,321,147" href="firefox.png" alt="Firefox" download="firefox.png">
<area shape="rect" coords="340,0,497,147" href="google-chrome.png" alt="Google Chrome" download="google-chrome.png">
<area shape="rect" coords="507,0,664,147" href="safari.png" alt="Safari" download="safari.png">
<area shape="rect" coords="659,0,816,147" href="opera.png" alt="Opera" download="opera.png">
</map>
<br/><br/>
<hr>
Artículo disponible en: <a href="https://lineadecodigo.com/html5/descargar-una-imagen-de-un-mapa-de-imagenes/">https://lineadecodigo.com/html5/descargar-una-imagen-de-un-mapa-de-imagenes/</a><br/>
<a href="http://lineadecodigo.com" title="Linea de Codigo">lineadecodigo.com</a>
</body>
</html>