Title Tag

ace_case

Member
Messages
217
Reaction score
11
Points
18
Lets say I have page http://example.com/page.php?contentid=55
Would it be better for SEO to have
PHP:
<!doctype html>
<html>
<head><title>Name Of Website</title></head>
<body>
//content
</body>
</html>
or
PHP:
<!doctype html>
<html>
<head></head>
<body>
//pulls content from database
<title>Title of Page</title>
//content
</body>
</html>
 

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
Let's see... the first example is valid HTML; the second is not. Which do you think would be better?
 
Top