Tuesday, December 25, 2018

Image

IMAGE TAG:-

<html>
<body>

<h2>HTML Images</h2>
<p>HTML images are defined with the img tag:</p>

<img src="google.jpg" alt="google.com" width="200" height="200">

</body>
</html>

OUTPUT:-


  • Images are defined with the <img> tag.
  • The source file (src), alternative text (alt), width, and height are provided as attributes:

No comments:

Post a Comment

Internal Javascripts

Internal Javascripts :    The script code can be written directly into the HTML document. script code is placed in header of the docume...