Want to Learn HTML?
HTML stands for Hyper Text Mark_Up Language.
Tags HTML has got reserved words, for formatting text, tables and doing different things like
linking to another page, sourcing images etc. If these reserved words are placed between
< and > then it is the start of the tag and the tag is ended by placing the word between
</ and >. For example, <HTML> tag ends with </HTML>
<!--Comments-->
Any line starting with <!-- and ending with --> is a comment, which will not be seen
in the web page.
<head> Heading information </head>
<head> and </head> tag is used to describe the heading information of a web page.
<title>My Home Page</title>
<title> and </title> tags are used to describe the title of a page, which can
be seen in the title bar of the page.
<meta name=keywords content="beginners, guide, aquarium, photography, gardening, html, computers">
<meta name=description content"This site is being built as beginners guide for hobbies and active interests.">
<meta> and </meta> tags are used to describe a page. Some search engines look for thes tags.
<body> All the information you want to put in the web page. </body>
<body> and </body> tags contain all the information such as text, pictures,
links etc. between them.
So, a sample page will look like the following:
<HTML>
<HEAD>
<meta name=keywords content="beginners, guide, aquarium, photography, gardening, html, computers">
<meta name=description content"This site is being built as beginners guide for hobbies and active interests.">
<TITLE>
MY HOME PAGE!
</TITLE>
</HEAD>
<BODY>
This is where all your information will be put.
</BODY>
</HTML>