Tutorials - HTML
HTML stands for "Hyper Text Markup Language". This is the language which the most browsers understands. Therefore you will learn how to code in HTML.Don't be afraid, HTML is the easiest language to learn in the world and hardly requires any special software to start learning. You first need to understand the structure of HTML. Actually it is not that hard to understand. HTML consists some sets of tags. Almost all the tags comes in sets. Each set has one opening and one closing tag. All HTML pages start with < HTML> tag and ends with </HTML> tag.
A typical HTML page will be having structure of tags like below............
<HTML> <HEAD> <Title> <!-- Your title goes here.... --> </Title> </Head> <Body> Your main content goes goes here........ </Body> </HTML>
In the above code the title text between title tags( <Title> and </Title>) is the title of your webpage. It will appear at the very top in the title of your beowser. The body portion text( text between <Body> and </Body> tag) is the most important as This is the only portion wchih other visiters will actually see and read. Most of the time you will design this part only.