Easy Way to Develop a Website
There are so many ways to learn HTML coding. But we suggest that not to go for each and every coding. Because its time consuming. But if you want you can learn it. Here we are giving some materials from where you can learn basic concept of HTML
Basic HTML Document Code Structure
| <html> <head> <title>Your Page Title</title> </head> <body> This area will contain everything that will be visible through a web browser, such as text and graphics. All of the information will be HTML coded. For a complete list of HTML codes, tags and examples, see the HTML chart below. </body> </html> |
<html> - Begins your HTML
document.
<head> - Contains information about the page such as
the TITLE, META tags for proper Search Engine indexing,
STYLE tags, which determine the page layout, and JavaScript
coding for special effects.
<title> - The TITLE of your
page. This will be visible in the title bar of the viewers’
browser.
</title> - Closes the HTML <title> tag.
</head> - Closes the HTML <head> tag.
<body> - This is where you will begin writing your
document and placing your HTML codes.
</body> - Closes the HTML <body> tag.
</html> - Closes the <html> tag.
For details learning download the files.
| Download File 1 Download File 2 Download File 3 |