www.w3schools.com is best site to learn about web design related stuff and tools ....
<html>
<head>
<title>...</title>
</head>
<body>
statements you want to include on the browser
</body>
</html>
<head>
<title>...</title>
</head>
<body>
statements you want to include on the browser
</body>
</html>
An HTML document has two* main parts:
- head. The head element contains title and meta data of a web document.
- body. The body element contains the information that you want to display on a web page.
* To make your web pages compatible with HTML 4, you need to add a document type declaration (DTD) before the HTML element. Many web authoring software add DTD and basic tags automatically when you create a new web page.
In a web page, the first tag (specifically, <html>) indicates the markup language that is being used for the document. The <head> tag contains information about the web page. Lastly, the content appears in the <body> tag.
See more tips at webdesignvalley.com/...
...
& tags are used for Starting & Ending of html page....
& tags are used to give the title name for html page who is display on browser.
Tags are used to all the information that do we want to display on our web page.....
...
& tags are used for Starting & Ending of html page....
& tags are used to give the title name for html page who is display on browser.
Tags are used to all the information that do we want to display on our web page.....
Creating words, links, pictures, picture links, headings, titles, and more.