Posts Tagged html guide

Lesson 13: HTML – Image

Lesson 13: HTML – Image
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

Lesson 12:Html - Fonts

Lesson 12:Html - Fonts
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

Html Forms

Story has no image
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

Lesson 11:HTML-Text attribute

Lesson 11:HTML-Text attribute
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

Lesson 10:HTML-Background

Lesson 10:HTML-Background
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

Lesson 9:HTML-bgcolor

Lesson 9:HTML-bgcolor
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

Lesson 8:HTML-HR(Horzontal Rule or Line)

Lesson 8:HTML-HR(Horzontal Rule or Line)
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

Lesson 7:HTML Paragraphs

Lesson 7:HTML Paragraphs
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

Lesson 5: Headings Tags in HTML

Lesson 5: Headings Tags in HTML
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

Lesson 4:How to use line break tag in HTML

Lesson 4:How to use line break tag in HTML
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
Copyright © 2010 Sooper Tutorials. All rights reserved. Powered by WordPress.org, Website by ISolution.org.