Images can improve the design and the appearance of a web page.
You can add images to your website with HTML.
Example
<img src="pic_trulli.jpg" alt="Italian Trulli">
Note: The text after src= is different if you are adding a picture from the same folder, sub-folder or another website. This may cause your image to not appear correctly on your page.
You can read on how to do it in this tutorial: https://www.w3schools.com/html/html_images.asp
HTML Image Tags
| Tag | Description |
|---|---|
| <img> | Defines an image |
| <map> | Defines an image map |
| <area> | Defines a clickable area inside an image map |
| <picture> | Defines a container for multiple image resources |
For a complete list of all available HTML tags, visit our HTML Tag Reference.