Web Designing...

Web Designing...

Wednesday, February 10, 2016

HTML Images

HTML Images


HTML images are defined with the <img> tag.
The source file (src), alternative text (alt), and size (width and height) are provided as attributes
  <!DOCTYPE html>
     <html>
        <body>
           <img src=“imagename.jpg“ width="104" height="142">
        </body>
     </html>

1 comment: