- Thursday, May 14, 2009, 6:06
- Programming
- 1,575 views
HTML is capable to embed images in a webpage; it can be done by using html tag <img>. Image tag is not a container tag means there is no closing tag but it has several attributes.
Tag Syntax
<img src=”picpath” height=”10” width=”20” alt=”image description” align=>
Src
Src attribute of image tag defines source of image, src is always set to the path of image.
Html Code
<html>
<head>
<title>
Html image example
</title>
</head>
<body>
<img src="a.jpg"> or ...
Full article
- Friday, May 8, 2009, 2:42
- Programming
- 563 views
Font tag in html is used for formatting the text. Font tag comprise three attributes font size, face and color, you can play with these attributes to change the looks of your site text.
Font Size
This attribute can increase and decrease the font size, smallest value of size attribute can be set as 1 and the maximum value can be set as (7)seven.
Example:
<Html>
<Title>
Font Size Example
</title>
<Body>
<font size ...
Full article
- Tuesday, February 17, 2009, 13:30
- Videos
- 860 views
This tutorial teach you the concept and usage of HTML forms. HTML forms are used in html to take input from user by using html controls such as text boxes,drop down,check boxes and many more. Have a look on this video and learn detail concept of HTML forms.
Full article
- Sunday, February 8, 2009, 9:02
- Programming
- 711 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
- 6,030 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
- Friday, February 6, 2009, 15:15
- Programming
- 2,759 views
The bgcolor attribute control the background color of the page. Bgcolor can be used with several html tags but here our keen focus on <body> background color. The value of background attribute can be set in plain text or in hexadecimal numbers, all background colors are the mix of RGB(red,green,blue) colors. Each colors value can be set between 0 to 255, in hexadecimal it ...
Full article
- Thursday, February 5, 2009, 7:50
- Programming
- 1,735 views
The <HR> element in html create an horizontal line or rule across the screen. <HR> is called an empty tag, although it have four attribute to change default way the rule appears on screen. This tag is called an empty tag because there is not ending tag or closing tag. Look at the simple use of html tag in this example.
<html>
<head>
<title>
Horzontal rule tag example
</title>
</head>
<body>
Free online ...
Full article
- Monday, February 2, 2009, 13:58
- Programming
- 532 views
When writing a report or article, you divided the text into section called paragraphs. Paragraph is the continuous break commonly used for better representation for the reader. To start new paragraph you need to insert a blank line and start the new line with tab, that can be done by using(<BR>)line break but still you have to work hard for inserting tabs for the ...
Full article
- Sunday, February 1, 2009, 11:50
- Programming
- 464 views
Web pages contains series of contents line or pages, its very difficult for the user to differentiate different section of the contents because all the text formatting is same. HTML support hot feature of heading, there are six heading element <H1></H1>....<H6></H6>.
By using different level of tags document creator can show different section within the same web page. The way headings are displayed depends ...
Full article
- Sunday, February 1, 2009, 11:39
- Programming
- 469 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