1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

HTML Living Standardの魅力を探る!初心者から上級者まで必見

Posted at

HTMLの世界は絶えず進化しています。この記事では、HTML Living Standardの成り立ちからその特徴、具体的な使用例までを解説します。新しい要素やタグの使い方を知りたい方は必見です!

目次

はじめに

HTMLはウェブページの基盤となる言語ですが、その仕様は絶えず変わっています。HTML Living Standardとは、これらの最新の仕様をまとめたものです。

HTML Living Standardとは?

HTML Living Standardは、HTMLの最新の仕様を表すものです。これは「生きている」ものとして、新しい技術やブラウザの実装に応じてアップデートされます。

成り立ち

2004年頃、ブラウザの大手ベンダーがHTMLの進化の停滞を感じ、新しいグループ、WHATWGを設立。これが後の「HTML5」へと発展し、さらに「HTML Living Standard」として継続的に更新されるようになりました。

特徴的な要素

HTML Living Standardには多くの新しい要素や属性が導入されています。

  • セマンティック要素:
    これらは、ウェブページの内容をより意味的に表現するためのものです。
<article>
    <header>
        <h2>Title of the article</h2>
    </header>
    <p>Content of the article...</p>
    <footer>
        <p>Author: John Doe</p>
    </footer>
</article>
  • マルチメディアサポート:
    ネイティブなマルチメディアサポートが強化されました。
<video controls>
  <source src="movie.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>

常に進化する仕様

HTML Living Standardは固定されたバージョンではなく、常に進化し続ける仕様です。これにより、新しい技術やブラウザの実装に迅速に対応することができます。

実例

HTML Living Standardには多くの新しい要素や属性があります。以下はその一例です。

<!-- セマンティック要素の例 -->
<article>
    <header>
        <h2>Title of the article</h2>
    </header>
    <p>Content of the article...</p>
    <footer>
        <p>Author: John Doe</p>
    </footer>
</article>

<!-- ビデオ要素の例 -->
<video controls>
  <source src="movie.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>

まとめ

HTML Living Standardは、ウェブの未来を形成する仕様です。新しい要素や属性を学ぶことで、より洗練されたウェブページの制作が可能になります。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?