B
Blz
Guest
There are many ways to center an image in HTML. The easiest method is to simply use the <center></center> tag. For example, to center some text you would do the following: <center>This text is centered</center>. If you are looking for a more advanced method you can use CSS, add a Div ID to your image and the following may center an image:
#ImgID {
margin: 0px auto;
}
Hope this helps.
#ImgID {
margin: 0px auto;
}
Hope this helps.