Should The Meta Tag Go In A Style Tag

1.3k Views Asked by At

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>
3

There are 3 best solutions below

0
On BEST ANSWER
  1. It does not go in the style tag.
  2. It does not matter if it is before or after the CSS.
  3. The / is not required (except in XHTML, which you didn't mention using)
  4. Even if you do use the /, a space is not required.
7
On

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>
2
On
  • before (but I think either way works)
  • no
  • no

That is, followings are acceptable:

1

<head>
<meta name="title" content="Some text here" />
<style>
/* CSS code here */
</style>
</head>

2

<head>
<meta name="title" content="Some text here">
<style>
/* CSS code here */
</style>
</head>