語義類標籤也是你們工做中常常會用到的一類標籤。他們的特色是表現上互相差很少,主要區別是表示不一樣的語義。好比section、nav、p。web
加強可讀性,能夠清晰看出網頁的結構,也更便於團隊的開發和維護。 對人類友好,還適合機器閱讀,變現力豐富適合引擎檢索(SEO)ruby
做爲天然語言和純文本的補充,用來表達必定的結構或者消除歧義bash
<hgroup>
<h1>標題1 </h1>
<h2>標題2</h2>
</hgroup>
<p>balah balah</p>
......
複製代碼
<body>
<header>
<nav>
……
</nav>
</header>
<aside>
<nav>
……
</nav>
</aside>
<article>
<section>……</section>
<section>……</section>
<section>……</section>
</article>
<footer>
<address>……</address>
</footer>
</body>
複製代碼
<abbr title="World Wide Web">WWW</abbr>.
複製代碼
<figure>
<img src="https://.....440px-NeXTcube_first_webserver.JPG"/>
<figcaption>The NeXT Computer used by Tim Berners-Lee at CERN.</figcaption>
</figure>
複製代碼