Jitendra Vyas
Jitendra Vyas

Reputation: 152677

Is it necessary to have at least one `H1` in any webpage?

Is it necessary to have at least one H1 in any web page? in terms of accessibility, semantics and SEO.

Upvotes: 2

Views: 1319

Answers (4)

Jobst
Jobst

Reputation: 559

only for seo. it is THOUGHT (for high rankings in google) that the TEXT LINK TO a page should be found in the <h1></h1> AND in the <title></title> and should come up a couple of time in the text.

Upvotes: 0

Jamie
Jamie

Reputation: 1361

Yeah It's not necessary however it's not unnecessary. I mean technically its not necessary to have img tags or a tags for that matter. And if you wan't to be really technical, you don't even NEED html tags most browsers will still render the page, but that's extremely bad practice. H1 tags cab be useful actually, specificially with css, as an additional p tag.

Upvotes: 1

Craig T
Craig T

Reputation: 2742

It is not necssary. Ask the same question about other tags, is it necessary to have a < H2 > tag?

That being said, the < h1 > tag is meant as the main heading, so if styled correctly should add a main focus point to your page.

Upvotes: 1

Sarfraz
Sarfraz

Reputation: 382696

It is not necessary to have at least one but it is necessary as advocated by seo guys not to put more than one <h1> tag.

Upvotes: 0

Related Questions