HTML Basics
HTML is a language for displaing content in Web pages. The acronym stands for Hyper Text Markup Language, in other words a language for expressing hyper text.
Language is based on XML
Basic structure of a page is
<html> <head> <title>Title</title> </head> <body> <h1> Heading 1 or title <h1> <h2> Heading n (1-6) or subtitle </h2> <p> Text Paragraph with <a href="http://www.google.com">links</a> and images <img src="image.jpg" /> </p> Lists <ul> <li> List item 1 </li> <li> List item 2 </li> <li> List item 3 </li> </ul> etc.. </body> </html>