Align images from right to left
How to align images from right to left.
you can set “rtl” to “p” tag’s “dir” attribute.
<html> <body> <p dir="rtl"> <img src="001.png"> <img src="002.png"> <img src="003.png"> <img src="004.png"> <img src="005.png"> <img src="006.png"> <img src="007.png"> </p> </body> </html>