- Sunday, February 8, 2009, 9:02
- Programming
- 784 views
As we learn in our last lesson about background color and background image. Text color in page remain the same whatever background color or background image you have used. If you use dark background colors and images then most probably it's difficult for page viewer to read anything. Text is useful attribute of <body> tag to change the text color of complete page except ...
Full article
- Friday, February 6, 2009, 16:04
- Programming
- 7,805 views
The background attribute allows you to place image or picture on background of your page. The background is most commonly used attribute of <body>,<table> element. When background tag within body tag it repeat the image to fill whole web page background.It's a good practice to use small size images because huge size image take time to load.
Try to use dim,light color background to ...
Full article
- Sunday, February 1, 2009, 11:39
- Programming
- 498 views
As discussed in
Lesson 3, contents in the body portion of html document are unformatted. In
lesson 3 we applied line break from notepad but it does not work. This tutorial will teach you how to apply line breaks in html document.
<BR> is not the container tag its a single tag used for line break. <BR> is placed at the end of the ...
Full article
- Sunday, February 1, 2009, 11:29
- Programming
- 1,404 views
Body tag hold the major portion of contents in HTML documents, it handles all the appearance of web page. There are different tags used within the body tag pairs to render the web page. You need to learn how to use these tags at two different levels.
1.In creating eye catching pages that communicate the desired information to the reader.
2.in creating easy-to-read HTML ...
Full article
- Sunday, February 1, 2009, 3:53
- Programming
- 306 views
There are two type of container in HTML empty elements and containers. Empty elements are used for page formatting, it not contain ending tag and so does not enclose any text.It starts with left angle bracket or less than sign (<) followed immediately by tag identifier or name. Next come the any attributes, modifies the way tag works. The tag end with the right ...
Full article