Monday, August 29, 2011

Use IMAGE tag in HTML

Image Inline
How to use IMAGE tag in HTML ?
<html>

<head>

<title>Image Inline</title>

</head>

<body bgcolor="#ffffff">

  <p>
  This paragraph has Google image
  <img src="http://im.in.com/connect/images/profile/oct2009/Google_300.jpg"
    title="hey! you with the mouse!" width="40" height="40" />
  inline with it.
  </p>

</body>

</html>
 (NOTE- IMAGE tag is inline-level tag.)

OUTPUT-
This paragraph has Google image inline with it.
Image Inline

No comments:

Post a Comment