2012-04-14 3 views
3

私はHTML5への移行を作り始めましたし、セクションタグと場所を正確にそれを使用する必要の概念を得るのに苦労してきました。私は次のコードで正しい考えを持っていますか?これは `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

"conseptionは" しかし、概念を綴られている:) – grantwparks

答えて

2

私に似ています。

specは言う:

セクションの要素は、一般的な文書またはアプリケーション部を表しています。この文脈では、セクションはコンテンツのテーマ別グループであり、通常は見出しが付いています。

関連する問題