html
element and always terminates with the end tag of the html
element as follows:<html>
...web page...
</html>
html
element basically tells your computer that this is an HTML document. All other element tags are 'nested' within the start and end html
tags. The web page is then further subdivided into two main sections which are the 'head' and the 'body'. <head>
start tag and terminates with the </head>
end tag. Immediately following this comes the <body>
start tag and just before the html
end tag comes the </body>
end tag. <html>...</html>
tags, one set of <head>...</head>
tags and one set of <body>...</body>
tags. This basic HTML web page structure can be illustrated by the following example:<html>
<head>
</head>
<body>
</body>
</html>
<title>...</title>
tags which are themselves always nested within the <head>...</head>
tags. All text appearing after the <title>
start tag and before the </title>
end tag will be displayed as your web page title. Hence the following HTML code will produce a web page entitled 'My Home Page':<html>
<head>
<title>
My Home Page
</title>
</head>
<body>
</body>
</html>
<body>...</body>
tags. So let's, for example, put the words 'HELLO WORLD!' on your web page. <html>
<head>
<title> My Home Page
</title>
</head>
<body>
HELLO WORLD!
</body>
</html>
Free Text Editors
Free Graphics Editors
Website Analysis Tools
Free Website Templates
See also:
If you need a .COM web address, you can get one quick and easy at...
<~ BACK | TOP | NEXT ~> |