我們正在討論在產品列表頁面中使用h1
標籤。有幾個方面可以用來過濾產品。HTML5語義 - 產品列表中的h1用法
技術上明智的做法是使用多個h1
標籤,如果這些標籤被封裝在section
或article
中即可。但是我們正在討論如果在製表人中使用h1
也是有用的,我們只有標題,包裝和價格。在我們看來,選擇h1
並不是一個好主意,而(SEO明智的)有意義的內容不見了。
以下是1款產品的標記。沒有選擇方面,我們列出了100多種產品(延遲加載)。
<div class="productItem--vView productItem" data-webid="productLister-item">
<article>
<a class="wrap" href="/products/category">
<header>
<h1><span>product x</span></h1>
<div class="meta">
<div class="spec price price--new">
<div class="value">
<span class="currency">€</span> 10<span class="decimal">.00</span>
<span class="type">new</span>
</div>
</div>
</div>
</header>
<figure>
<div class="image">
<div class="graphic">
<img src='https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97150&w=230&h=300'/>
</div>
</div>
</figure>
</a>
</article>
</div>
在這裏使用h1
是否正確,以及這裏最好的選擇是什麼。 h2
?
我會使用H2產品標題,保留h1的類別和促銷件。 (排名爲關鍵字搜索的產品)可能?到目前爲止,我只是隨便看看SEO的東西。 – Hughzi
請閱讀此:https://www.paciellogroup.com/blog/2013/10/html5-document-outline/ – Alohci