+ 1
How do i align images?
3 Answers
+ 1
Create a DIV! example: <div class="central"> <img src="URL" alt="..."> </div> and write in the style (.CSS)
.central{ text-align:center;}
0
you can dive for in-line styling to align an image
<img src="URL" alt="..." text-align="left">
Though Lorenzo's CSS Div usage is a better practice for clean coding.