Modificar Tamaño A Imagen y posicion Con HTML

Para Eso Usaremos El Ejemplo Que Anteriormente  se Uso

<html>
<head>
<title>Inicio</title>
</head>
<body bgcolor="#0000FF">
<img src="C:\Users\mayqy\Desktop\Nueva carpeta\Shre.jpg "  > <!-- Ruta De la Imagen -->
</body>
</html>




En la parte de Img src Agregaremos Unos Atributos Para Poder Cambiar el estado de la imagen, para eso usaremos las etiquetas width, height (Ancho y Alto) respectivamente
 

<html>
<head>
<title>Inicio</title>
</head>
<body bgcolor="#0000FF">
<img src="C:\Users\mayqy\Desktop\Nueva carpeta\Shre.jpg " width="700" height="500"/ > <!-- Ruta De la Imagen y el tamaño de la imagen -->
</body>
</html>




Ahora se cambiara de Posicion la Imagen para Eso en la parte de Img src=" " Agregaremos el atributo align=" " Aqui Podremos Agregar Hacia la Izquierda, Centro Y Derech (right, center, left )

Aqui en el ejemplo se mandara ala derecha

<html>
<head>
<title>Inicio</title>
</head>
<body bgcolor="#0000FF">
<img src="C:\Users\mayqy\Desktop\Nueva carpeta\Shre.jpg " width="700" height="500" align="right" > <!-- Ruta De la Imagen , el tamaño de la Imagen Y la Posicion  -->
</body>
</html>







Comentarios