0
How to align img to center in html without using css ?
3 Answers
+ 3
Just simple
<div align="center"
<img src="tree.jpg">
Something like this
+ 6
<div align="center">
<img src="image_url">
</div>
And this question is already asked by many users, so use the search bar situated at the upper-left corner before posting to avoid duplicate questions
0
The align attribute is not supported in HTML5. Use CSS instead.