57

マークアップって重要なの?あなたへ伝えたいマークアップの大切さ

Embed Size (px)

Citation preview

QUESTION

QUESTION

“ここはliタグでマークアップします

-とある初心者向け書籍にて

“ここはliタグでマークアップします

-とある初心者向け書籍にて

mkasumi.com: マークアップすることについて考えてみた話(当時の思いをしたためて下書きのまま)

“マークアップに正解はない

- 業界の偉い人たち

<ul> <li><a href="#">Home</a></li> <li><a href="/blog/">ブログ</a></li> <li><a href=“/blog/xxx.html">ブログ記事</a></li> </ul>

<nav> <ol> <li><a href="#">Home</a></li> <li><a href="/blog/">ブログ</a></li> <li><a href="/blog/xxx.html">ブログ記事</a></li> </ol> </nav>

<article> <h1>記事のタイトル</h1>

<a href=“#index1”>目次1</a>

<a href=“#index2”>目次2</a>

<a href=“#index3”>目次3</a>

</article>

In the following example, there are two paragraphs in a section. There is also a heading, which contains phrasing content that is not a paragraph. Note how the comments and inter-element whitespace do not form paragraphs.

“<section> <h1>Example of paragraphs</h1>

This is the <em>first</em> paragraph in this example.

<p>This is the second.</p> <!-- This is not a paragraph. -->

</section>

- HTML Standard 3.2.5.4 Paragraphshttps://html.spec.whatwg.org/multipage/dom.html#paragraphs