2012-04-14 46 views
3

我已經開始向html5過渡,並一直在努力獲取section標籤的概念以及它需要使用的地方。我在下面的代碼中得到了正確的想法嗎?這是`section` html5標籤的正確用法嗎?

<body> 
<header> 
    <h1>Chris Mepham</h1> 
    <section id="who"> 
     <h2>Who am I?</h2> 
     <p>I am a freelance web designer and programmer 
     based in Sudbury, Suffolk. I create modern, bespoke 
     websites and applications for businesses in the uk at 
     affordable prices.</p> 
    </section> 
    <section id="what"> 
     <h2>What can I do?</h2> 
     <p>I can create you a website and put it online! From 
     conseption through to delivering the finished website. 
     I will ensure the site has been created with strict W3C 
     compliance to ensure maximum cross-browser compatibility.</p> 
    </section> 
    <section id="skills"> 
     <h2>My Skills</h2> 
     <p>List of skills.</p> 
    </section> 
</header> 
</body> 
+0

「接受」拼寫的概念,雖然:) – grantwparks 2013-06-21 17:49:01

回答

2

對我來說是正確的。

spec說:

的部分元素表示一個通用的文檔或應用程序段。在這種情況下,部分是內容的主題分組,通常帶有標題。