Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts
Main Menu For Learning HTML
Hosting Your Website
Once you have finished creating all the webpages, you must host it onto a webserver. A webserver is a computer that can be accessed by the entire world and it is always connected to the World Wide Web. It contains several websites created by different persons. In order to make website public, you must register it. Once it is registered, that website address becomes unique only to your website and anyone who types the URL in their browser will be directed to your webpages.
The second step is to gain some space in a webserver. There are several webservers that hire out space for a small charge and give you a user name and password to access that space and put your webpages. Once that is done, you are now ready top host your webpages. LEARN MORE>>
The second step is to gain some space in a webserver. There are several webservers that hire out space for a small charge and give you a user name and password to access that space and put your webpages. Once that is done, you are now ready top host your webpages. LEARN MORE>>
Image Mapping
There is also a method of hyperlinking various parts of a single image to various webpages. This is done by image mapping. In image mapping, we can define a part of the image and create a hyperlink to it.
The first step is to create the image map and link it. Then we insert the image and refer to the image map that was created in the first step.
To create an image map, we use the MAP tag and give it a name to the image map.
LEARN MORE>>
The first step is to create the image map and link it. Then we insert the image and refer to the image map that was created in the first step.
To create an image map, we use the MAP tag and give it a name to the image map.
LEARN MORE>>
HTML - Creating Tables
A table is an excellent way of organizing information and presenting it in a readable and meaningful manner.
The TABLE tag defines the beginning of the table. The use of CAPTION tag is optional. If you use it, a heading is given.
Next comes the TR tag. It stands for Table Row. It indicates the beginning of a row. Then to define the contents of each cell in that row, we have to use the TD tag which stands for Table Data
LEARN MORE>>
Next comes the TR tag. It stands for Table Row. It indicates the beginning of a row. Then to define the contents of each cell in that row, we have to use the TD tag which stands for Table Data
LEARN MORE>>
HTML - Creating Lists
A list is a set of items or phrases written one below the other and related to each other in some way. We make shopping lists, to-do lists, check lists etc. We may humber them from 1 onwards or we may put a symbol such as a star or circle at the beginning of each item.
The most commonly used lists in HTML are unordered and ordered lists. Unordered lists have a bullet before them. Ordered lists are numbered using integers or alphabets or roman numerals.
LEARN MORE>>
The most commonly used lists in HTML are unordered and ordered lists. Unordered lists have a bullet before them. Ordered lists are numbered using integers or alphabets or roman numerals.
LEARN MORE>>
HTML - More on Inserting Components
Hyperlinking Images
You can even chose to hyperlink an image. To do that, first define the hyperlink tag. Then insert the image and then close the hyperlink tag.
Mailto Hyperlink
You may have noticed in most websites that there is a link called "Contact us" or "Send us a mail" etc, which allows the user to send an email to that website. You too can create such hyperlinks. It is called the mailto hyperlink.
Inserting Audio
You can insert audio into your webpage so that everytime the page is acessed and displayed on the screen, the audio clip would play in a continous loop. To dothat we must use the bgsound tag.
LEARN MORE>>
You can even chose to hyperlink an image. To do that, first define the hyperlink tag. Then insert the image and then close the hyperlink tag.
Mailto Hyperlink
You may have noticed in most websites that there is a link called "Contact us" or "Send us a mail" etc, which allows the user to send an email to that website. You too can create such hyperlinks. It is called the mailto hyperlink.
Inserting Audio
You can insert audio into your webpage so that everytime the page is acessed and displayed on the screen, the audio clip would play in a continous loop. To dothat we must use the bgsound tag.
LEARN MORE>>
HTML - Inserting Components
Graphics are a very important part of any webpage. Apart from using images to illustrate certain points, clever use of images also makes our webpages more attractive and readable. But there is a disadvantage in having too many images in the page. Since the storage space that an image occupies is very high compared to text, a browser takes a vaery long time to display an image on the screen. Therefore, the more the number of images in a page, the longer it takes to download it from the server. We must therefore make judicious use of images in our webpages.
You can use two types of images in webpages - JPG nad GIF. JPG is an extension name for an image file that is created using Joint Photographic Experts Group format. GIF is the extension name for an image file that is created using the Graphics Interchange Format. LEARN MORE>>
Html Text Formatting
The basic formatting that can be applied to a webpage is for the text. By default, the Times Roman forn at 12 points is used. This can be changes according to our desire by using the FONT tag as shown belo
FACE : allows you to specify the font name like Times Roman, Courier, Arial etc.
SIZE: allows you to give a number from 1 (size 8 points) to 7 (size 36 points).
COLOR: allows you to specify the name of the color you wish to apply to the text.
LEARN MORE>>
FACE : allows you to specify the font name like Times Roman, Courier, Arial etc.
SIZE: allows you to give a number from 1 (size 8 points) to 7 (size 36 points).
COLOR: allows you to specify the name of the color you wish to apply to the text.
LEARN MORE>>
HTML Formatting
First we have to let the browser know that this file is indeed a HTML file. So the first code in any HTML file must be:
So it follows that at the end of the file we must give the tag .
The actual content of the page must be put within the BODY tag. though this is not compulsory, it gives you control of the basic look of the page by allowing you to specify the general font and background feature. LEARN MORE>>
So it follows that at the end of the file we must give the tag .
The actual content of the page must be put within the BODY tag. though this is not compulsory, it gives you control of the basic look of the page by allowing you to specify the general font and background feature. LEARN MORE>>
Html Introduction
What is HTML
?HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language. HTML is not a programming language, it is a markup language. A markup language is a set of markup tags. HTML uses markup tags to describe web pages.
HTML Tags
HTML markup tags are usually called HTML tags. HTML tags are keywords surrounded by angle brackets like . HTML tags normally come in pairs like and . LEARN MORE>> .
Subscribe to:
Posts (Atom)