|
|
|
|
![]() ![]() |
Aug 22 2007, 07:02 AM
Post
#1
|
|
|
Newbie [ Level 1 ] Group: Members Posts: 7 Joined: 9-August 07 Member No.: 23,941 |
Okay, because this is a forum, I'll tell you a little bit of HTML briefly. The rest you can go to www.w3schools.com/html to learn yourself.
Look at this little example below. ----------------------------------------- <html> <title> Hello World </title> <body> Hello world </body> </html> ----------------------------------------- Where it says <html> it is telling the browser to start viewing that part of the page. Where it says </html> it tells the browser that it is the end of the document. The </html> indicates the break. It is the same with the title. Where it says <title> and the </title>. It tells the web title to start and stop. I will not go into specifics, but you can visit www.w3schools.com/html to learn more, if you are interested. |
|
|
|
Aug 22 2007, 08:14 AM
Post
#2
|
|
|
Premium Member Group: [HOSTED] Posts: 286 Joined: 17-June 07 From: Tasmania Member No.: 22,699 |
title tags should be in the head.
|
|
|
|
Aug 22 2007, 08:32 AM
Post
#3
|
|
|
Member - Active Contributor Group: Members Posts: 91 Joined: 18-May 07 Member No.: 22,008 |
The reason for the <title> tag being inside the <head> tag is because the things inside the <head> tag are downloaded first, or something like that.
|
|
|
|
Aug 23 2007, 02:15 AM
Post
#4
|
|
|
Super Member Group: [HOSTED] Posts: 752 Joined: 12-July 06 From: Ontario, Canada Member No.: 14,464 |
The reason for the <title> tag being inside the <head> tag is because the things inside the <head> tag are downloaded first, or something like that. Actually, the reason for the <title> element to be a child of the <head> element is because the page title is part of the page's metadata, not direct page data. In other words, it is information that the browser (or "user-agent") uses. Although we see <title> data as the title of the window bar, it is considered to be information for the browser only. |
|
|
|
Aug 23 2007, 06:49 AM
Post
#5
|
|
|
Oh come on Mrs. B! Group: Members Posts: 648 Joined: 6-June 07 From: Tasmania, Australia Member No.: 22,422 |
no offence but i wouldnt really want to be tought HTML by you.
"learn html" and u dont even know it. |
|
|
|
Aug 24 2007, 10:17 AM
Post
#6
|
|
|
Newbie [ Level 1 ] Group: Members Posts: 6 Joined: 23-August 07 Member No.: 24,304 |
sorry, but i don't see the point of this topic.
There are enougth tutorials in the how to section imo and this one is not even a proper one. You should use a doctype, those are better for SEO |
|
|
|
Aug 24 2007, 12:00 PM
Post
#7
|
|
|
Living at the Datacenter Group: [HOSTED] Posts: 708 Joined: 30-June 06 From: Australia Member No.: 14,219 myCENTs:76.93 |
I think today, this type of coding is a kind of given! everyone knows it and its old (in some respects
|
|
|
|
Aug 24 2007, 04:46 PM
Post
#8
|
|
|
Advanced Member Group: Members Posts: 170 Joined: 30-July 07 Member No.: 23,704 |
I think today, this type of coding is a kind of given! everyone knows it and its old (in some respects Maybe you are right. How about ruby on rails. I did a search on this forum and can't find a full related tutorial to this topics Anyone found it somewhere in this forum or have other links? I will predict that this will be the next web base language in the web apart from php (correct my if i'm wrong). Just a thoughts. P.S. would be appreciated if someone enlighten me on this.. EDITED: Found Ruby misc tutorial. But not full This post has been edited by kelvinmaki: Aug 24 2007, 05:22 PM |
|
|
|
Aug 25 2007, 08:54 AM
Post
#9
|
|
|
Way Out Of Control - You need a life :) Group: [HOSTED] Posts: 1,087 Joined: 2-August 05 From: Kapellen (Antwerp, Belgium) Member No.: 7,585 |
Nice ... not
Honestly, it should have looked like this CODE <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Testpage</title> </head> <body> <p>Hello World!</p> </body> </html> That's the minimum you should have for a webpage... |
|
|
|
![]() ![]() |
Similar Topics
|
Lo-Fi Version | Time is now: 4th December 2008 - 11:14 PM |