What Is HTML ?
HTML is short for “HyperText Markup Language”. It’s the predominant markup language for webpages, and text file containing small markup tags. The markup tags tell the web browser how to display the pages. You can create the HTML file by using the simple text editor like Notepad (windows) or Simple Text (Mac). Then you can save it with the extension .htm or .html
<html>
<head>
<title>Title of page</title>
</head>
<body>
Just for Test page. <b>This text is bold</b>
</body>
</html>
You can see the sample above, it’s the very simple sample. The first tag in the sample above is <html>. This tag tells the browser that this is the start of an HTML document. The last tag in the sample above is </html>. This tag tells the browser that this is the end of the HTML document. The text between the <head> tag and the </head> tag is header information. Header information is not displayed in the browser window. The text between the <title> tags is the title of the document. The title is displayed in the browser's caption. The text between the <body> tags is the text that will be displayed in the browser. The text between the <b> and </b> tags will be displayed in a bold font.
To explain about the details of HTML tags, it will take long article for that purpose. And will spend a month just to write about it. To be an expert in HTML, it’s need time and patient for learning about the HTML. These are the websites which will be useful for the detail information and lesson about the HTML:
http://www.w3schools.com/html/html_intro.asp
http://www.htmlcodetutorial.com
If the explanation or the recommended websites spin your head, there is lot of template available to download for your webpage or website which is free. But to know little bit about the HTML will make you easier to edit your webpage for nice view at least.
Hope it will help you to know little bit in HTML…. Good luck my friends…























Comments