Confused with the title of my webpage....

Foresight

New Member
:confused:

<html>
<head>
<title> My websit's title....</title>
</head>
</html>

It should work, but everything between the <head> tag doesn't show up

Anyone know how I'm messing up?
 

adamblan

New Member
Doctype declaration is missing

<head> elements aren't supposed to display

No body tag- which is where your content is displayed
 

sheanhoxie

New Member
Heres a starter for you, search W3 if you need a different doctype

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>My HTML Doc</title>
</head>

<body>

<p>… Your HTML content here …</p>

</body>
</html>
 

orly_yarly

New Member
Heres a starter for you, search W3 if you need a different doctype

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>My HTML Doc</title>
</head>

<body>

<p>… Your HTML content here …</p>

</body>
</html>
Good idea, but i recommend "loose.dtd" much easier for novice users and sometimes can look better
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>My HTML Doc</title>
</head>

<body>

<p>… Your HTML content here …</p>

</body>
 
Last edited:

Foresight

New Member
Oh i get it now, thank you,

Yeah I'm learning html because
i'm eventually going to make an online game with php

I thought that the <title> was a visible title,
Now I learned about <h1>, and ever <img>

I was very, very confused, thanks again :)
 
Last edited:
Top