Is H1 given to the Logo?

Friends, is it correct to give an H1 to the “image” type logo? Or is it necessary to put the H1 tag as text at the top of the site?

So for the H1 Tag;
It would be better to give it to the logo image.
It would be better to give it as text.
Which one do you think?

Does Google perceive the image’s alt and title tags as an H1?

aga anlatmak istediğini anlamadım logom resim mi olsun yazımı onumu soruyorsun

logo yazı olursa H1 verilebilir. Ama resim olursa h1 verilmez(öyle bi kodlama yok)

Logoya bence h1 verilmemeli. Hem yazıda hem resimde.

sağolun cevaplar için. logo ayrı bir şekilde resim olarak durmalı. h1 tagini de sitenin en üstüne metin(link değil) olarak koymalıyız. doğru mudur?

Görseli H1 etiketi arasına almak doğal olmayan ve çok acemice bir yöntem olur. Ama şöyle bir kullanım SEO için mantıklı bir kullanım olabilir;

<h1 id="logo">
    <a href=""><span>Site Başlığı</span></a>
</h1>

Buradan CSS koduyla şöyle bir müdahele yapıp fotoğrafı gösterebiliriz:


#logo a {
    display:block;
    width: 400px;
    height: 200px;
    background: url(http://lorempixel.com/g/400/200) no-repeat left top;
}

#logo a span {
    display: none;
}

Test etmek için: http://codepen.io/anon/pen/KwzMrQ