How to make different pictures using HTML format in web designing?

Pictures in html are all handled using the <img statement.

If you want other graphics effects, use css: for example, usually background-image: url('something.jpg') for something in your web page (a paragraph or a banner or an address or another part of your web page.

You can also use css to specify list-style-image: url('something.jpg') to display icons instead of dots for a list.

Some other css items allow you to display images on your html page. Check it out.
 
Back
Top