HTML (18)
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>
<head>
<title>My Page</title>
</head>
<body>
<center>
<img src ="C:\Users\Public\Pictures\Sample Pictures\11.jpg">
</center>
</body>
</html>
0 Comments