by seige » Aug 6th, '06, 10:11
Kati
That's the most convoluted thing I ever heard!
The HTML page structure is thus:
<html>
<head>
--(header declarations here and back-end coding such as titles)--
</head>
<body>
--(What the user sees in their browser here)--
</body>
</html>
To add a compliant title, you simply add a TITLE tag in the head section of your page. Somewhere between the '<head> and </head>' tags, just add:
<title>This is the name of your page to appear in the title bar</title>
As an example, the title tag for the page you're now looking at is:
<title>magic trick - HTML help please</title>
What's so hard about that?
Stephen: you can learn more about HTML by reverse engineering other people's sites than you can imagine. Just go to a site which does what you want, and look at the source code.
I've personally been programming in HTML since about 1990, and I still cant believe the overwritten code which people use: I used to have to code pages purely by hand, and pages were smaller, more streamlined and WORKED! It still pays me to go back in and manually cull the extraneous stuff in websites: every bit of code removed or streamlined means faster more compliant pages.
Furthermore, search engines look for standards-compliant code. The <title> tag is VERY important, as is a good description tag, also in the header, which looks something like this:
<meta name="description" content="This is a general description of my website, which should contain keywords and details, but don't make it too long or use too many capitals!">
Hope that helps.
Last edited by
seige on Aug 6th, '06, 10:17, edited 1 time in total.