html image description

The image you can not call directly it’s required an image tag. The image tag must require src and alt attribute. Image invoke the following types as given below examples...

HTML Imgae Link:

<a href="anythinglearn.com">
        <img src="anythinglearn.jpg" alt="Anything Learn">
    </a>

HTML Imgae:
<img src="anythinglearn.jpg" alt="Anything Learn">

html image map coordinates:




<img src="anythinglearnCoords.jpg" usemap="#anythingMap">

 <map name="anythingMap">
  <area target="_blank" alt="Anything learn rectangle" title="Anything learn rectangle" href="anythinglearn.com" coords="103,3,142,40"
   shape="rect">
  <area target="_self" alt="Anything learn circle" title="Anything learn circle" href="anythinglearn.com" coords="235,29,22"
   shape="circle">
  <area target="_parent" alt="Anything learn poly" title="Anything learn poly" href="anythinglearn.com" coords="2,81,29,81,47,80,53,90,69,87,70,78,146,83,161,90,
171,81,170,66,161,59,147,61,146,74,139,59,122,56,120,51,114,
50,111,56,103,61,96,54,90,49,79,52,70,56,65,58,53,58,39,
58,28,57,18,54,11,50,2,60"
   shape="poly">
</map>

html image picture:
    <picture>
        <source media="(min-width: 767px)" srcset="anythinglearn767.jpg">
        <source media="(min-width: 480px)" srcset="anythinglearn480.jpg">
        <img src="anythinglearn.jpg" alt="Anything Learn">
    </picture>

html image figure caption:
    <figure>
        <img src="anythinglearn.jpg" alt="Anything Learn" width="294" height="91">
        <figcaption>Fig.1 - Anything Learn </figcaption>
    </figure>

No comments:

Note: Only a member of this blog may post a comment.

Copyright Reserved to Anything Learn. Powered by Blogger.