-
Notifications
You must be signed in to change notification settings - Fork 0
/
imagenes.html
30 lines (29 loc) · 1.23 KB
/
imagenes.html
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
29
30
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Imagenes</title>
</head>
<body>
<style>
.contenedor{
width: 300px;
}
</style>
<div class="contenedor">
<img width="100%" src="IMG/jeje.jpg" alt="Portada del curso de HTML Y JS.">
</div>
<img width="300px" height="400px" src="IMG/jeje.jpg" alt="Portada del curso de HTML Y JS.">
<figure>
<img width="300px" height="300px" src="IMG/jeje.jpg" alt="Portada del curso de HTML Y JS.">
<figcaption>Portada del curso de HTML Y JS.
</figcaption>
</figure>
<!--
<img>Este elemento inserta una imagen en el documento. El elemento requiere del atributo src para especificar la URL del archivo con la imagen que queremos incorporar.
<picture>Este elemento inserta una imagen en el documento. Trabaja junto con el elemento <source> para ofrecer múltiples imágenes en diferentes resoluciones. Es útil para crear sitios web adaptables.
<figure>Este elemento representa contenido asociado con el contenido principal, pero que se puede eliminar sin que se vea afectado, como fotos, vídeos, etc.
<figcaption> Este elemento introduce un título para el elemento <figure>. -->
</body>
</html>