Dia 4
21
Practicas/Practicas HTML/Practica 6/Enlaces.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
Etiqueta de enlaces
|
||||
|
||||
<a> </a>
|
||||
|
||||
Ejemplo
|
||||
|
||||
<a href="https://www.google.es"> Enlace </a>
|
||||
|
||||
Propiedad target:
|
||||
- Target="_blank" abre el enlace en una nueva pestaña o ventana del navegador
|
||||
- Target="_self" es la opción por defecto, mostrando el contenido del link en la misma ventana
|
||||
|
||||
|
||||
Enlace en una imagen
|
||||
<a title="La Rosa" href="https://es.wikipedia.org/wiki/Rosa"><img src="rosa.jpg" alt="La rosa" ></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
Practicas/Practicas HTML/Practica 6/imagenes/clavel.jpg
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/coco.jpg
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/delfin_cazando.jpg
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/geranio.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/gladiolo.jpg
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/jacinto.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/manada.jpg
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/margarita.jpg
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/orquidea.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/petunia.jpg
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/pinguino.jpg
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/rosa.jpg
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
Practicas/Practicas HTML/Practica 6/imagenes/tulipan.jpg
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
22
Practicas/Practicas HTML/Practica 6/practica 6.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a style="display: block;" title="Clavel" href="https://es.wikipedia.org/wiki/Clavel" target="_blank">Clavel</a>
|
||||
<a style="display: block;" title="Clavel" href="https://es.wikipedia.org/wiki/Clavel" target="_blank">
|
||||
<img src="./imagenes/clavel.jpg" alt="Un Clavel">
|
||||
</a>
|
||||
|
||||
<a style="display: block;" title="Geranio" href="https://es.wikipedia.org/wiki/Geranio" target="_blank">Geranio</a>
|
||||
<a style="display: block;" title="Geranio" href="https://es.wikipedia.org/wiki/Geranio" target="_blank">
|
||||
<img src="./imagenes/geranio.jpg" alt="Un Geranio">
|
||||
</a>
|
||||
</body>
|
||||
|
||||
</html>
|
||||