HTML Practice Exercise Three

Question 1 :
<img> tag does not have any ending, therefore it is also known as self containing tag (type 'Y' or 'N')
Type (Y/N):
Question 2 :
Fill correctly for <img> tag for attribute of image name or path.
<img = 'imagename.png' >
Question 3 :

Insert the attribute for alternative text in image tag


 <img src='welcome.jpeg'  = 'Welcome Board at the corner of the road!' >
Question 4 :
Fill in the proper attribute for picture tag.
          <picture> 
            <source media='(max-width:500px)'  = 'imagename.jpg' > 
            <source  = 'imagename.jpg' > 
            <img src = 'imagename.png' alt='an super cool image of vehicle'> 
          </picture>
        
Question 5 :
Insert the caption under the picture below.
        <figure>                   
            <img src = 'imagename.png' alt='an super cool image of vehicle'>
            A cool picture of vehicle
        </figure>