0
How to make an image in HTML code appear when we are run/open html file?we need to use jpeg or jpg picture?I need help on this.
Pleaseeee
8 Respostas
+ 1
html image tags support jpeg/jpg as well as png, gif and even svg...
however, you should provide the right path to it (either absolute or relative) and in sololearn context you can only access to images hosted on internet (http(s) absolute url)
+ 1
Using href attribute or how?
+ 1
<img> do not have 'href' attribute but 'src' attribute ;P
+ 1
<img src="https://...."/>
+ 1
Like that?
+ 1
yes
+ 1
<img src="https://..." alt=""/>
+ 1
Ok thanks