0
How do i apply pictures to my html?
3 Respuestas
+ 2
With the <img> tag, you can insert images. For a HERO you would use the background property. The img tag does not need an end tag. The required attribute is called src (source).
E.G.
<img src="url-of-image" (optional) alt="text if img can't be loaded">
+ 1
<img src="https://www.sololearn.com/images/fb-story-icon.jpg" alt="SoloLearn">
0
Give me 1 example make i try.