Saturday, 18 October 2014

Learn HTML online for beginners part 3

HTML Links


you can insert another website or page link with link tag.
HTML links are defined with <a> tag.

Example


<a href="https://learncsshtmlonline.blogspot.com">go to this website</a>
This link address is specified in the href attribute.

HTML Images


You can insert any picture in our website with Image tag.

Example

<img src="image.jpg" width="100px" height="100px" />




  • img stands for image tag
  • src means source where your image save.
  • you must type .jpg/.jpeg with image name.




No comments:

Post a Comment