Course
summary


    0 chapters available

Loading...

Create your website with HTML and CSS

Difficulty: Beginner ● Progress: 0 / 0 modules completed

Images

Adding an image is really very simple, you'll need to use the <img /> tag and specify the image path with the src="..." attribute (for "source"), like this:

<!-- Une image avec une url absolue -->
<img src="https://picsum.photos/300/300.jpg"/>

<!-- Une image avec une url relative -->
<img src="./img/logo.jpg"/>

You need a free account to read this module