Home About us Services Portfolio Clients Pricing Contact us

Posts Tagged ‘HTML’

Basic HTML tutorial

Wednesday, July 9th, 2008

An HTML document consists of various sections such as the head, body, etc. Different kinds of informations can be entered within these sections, which helps to give your document a proper style.

The head section of an HTML document consists of the important informations related to the document whereas the components of the document as well as the markup tags are placed under the body section.

You can use a Notepad document to enter the tags and saving it as an HTML document.

The first markup tag used in an HTML document is the <HTML> tag. This tag enables the Web browser to recognize the file as HTML. The starting tag of the HTML document is <HTML> while the ending tag is </HTML> which is kept a few lines below the starting tag. Whatever informations are to be added in the HTML document has to be entered within these two tags. (more…)