Answers for "img alt src"

7

html img src

<img href="https://website.com/image.jpg"> 
<!-- for an image online -->

<img src=C:\your_files>
<!-- for a local file -->
Posted by: Guest on June-18-2020
3

html img alt

<!-- The required alt attribute specifies an alternate text for an image, 
if the image cannot be displayed (screen reader...). -->
<img src="img_girl.jpg" alt="Girl in a jacket" width="500" height="600">

<img src="img_girl.jpg" alt="Girl in a jacket" 
     longdesc="img_girl-longdesc.html">  <!-- long description -->
Posted by: Guest on April-05-2021
4

img tag

<img src="the source image's url" alt="the image's description">
Posted by: Guest on May-04-2020
1

img tag

<img src="photo1.png" alt="">
Posted by: Guest on September-07-2020

Browse Popular Code Answers by Language