Recent

6/recent/ticker-posts

HTML (18)

HTML (18)

Best laptops of 2020 - CNET


Image tag (Attributes)


Centering an Image

We can't horizontally center an image in the browser window with the align attribute.The middle value center the image vertically with the current line bu not horizontally.

TAG: <center>

Example↓↓↓↓

<html>
<head>
<title>My Page</title>
</head>
<body>
<center>
<img src ="C:\Users\Public\Pictures\Sample Pictures\11.jpg">
</center>
</body>
</html>





Height and Width attribute

This attribute is used to change the height and width of the image.




Example ↓↓↓↓↓

<html>
<head>
<title>My Page</title>
</head>
<body>
<center>
<img src ="C:\Users\Public\Pictures\Sample Pictures\11.jpg" height=100 width=50>
</center>
</body>
</html>




Post a Comment

0 Comments