Sunday 21 July 2013

Class 8 - Revision

Go through the Class 7 worksheets and revision in the blog. That will help you.
Image

<img src=filename>
<img src= bird.jpg>

Attributes of image tag :
1. width - changes the width of the image
2. height - changes the height of the image
3. border - border around the image, default value is 0.
4. alt - if the image is not available, the alternate text will be displayed.
5. align - position of the image in the web page.
align =right/left/middle/top/bottom
<html>
<body>
  <img src=moon.jpg height=400 width=400>

</body>
</html>


Hyperlink

  • External Linking
  • Internal Linking
External linking :
< a href=URL> link text </a>
a - anchor tag. Everything between <a> and </a> behaves like a link.
URL - address of the webpage to be opened.
link text - text acting as a link.
Internal  Linking :
 Linking different locations in the same document.