[html5]マークアップの覚書
そろそろhtml5使うことが多くなったので覚え書き。
やっぱりサイトによってatircleとsectionの認識が違うんですよね~。
個人的にはarticleは「章」と言うよりは「節」なイメージなので、このマークアップでしばらくは使おうかな。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>HTML5サンプル</title> </head> <body> <header> <h1></h1> <nav id="glnav"> <ul> <li></li> <li></li> </ul> </nav> </header><!--end header--> <section id=""> <article id=""> contents </article> </section> <footer> <ul> <li></li> <li></li> </ul> </footer> </body> </html>