3

私は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>
4

1 に答える 1

2

私には正しいように見えます。

仕様によると:

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

于 2012-04-14T18:57:48.780 に答える