Does the meta
tag need to be enclosed in a style
tag (like CSS):
<head>
<style>
<meta name="title" content="Some text here" />
</style>
</head>
Or is this good:
<head>
<meta name="title" content="Some text here" />
</head>
/
is not required (except in XHTML, which you didn't mention using)/
, a space is not required.