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>
meta
tags have to go in the head, and should not be in style
tags, style
tags are only for inline CSS declarations.
The latter is correct, however while most browser will ignore issues like />
its important to note that meta
tags are void elements and HTML is not XML, so the most correct answer is:
<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.