Skip to content

Instantly share code, notes, and snippets.

@mneko22
Last active August 29, 2015 14:07
Show Gist options
  • Save mneko22/57c9eac37af1ee5e9dd5 to your computer and use it in GitHub Desktop.
Save mneko22/57c9eac37af1ee5e9dd5 to your computer and use it in GitHub Desktop.
HTML5で新規に追加されたタグ、廃止されたタグを簡単にまとめたもの
<!DOCTYPE html>
<html>
<head>
<title>TEST.html</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"><!--文字コード指定-->
<meta http-equiv="Content-Style-Type" content="text/css"><!--標準スタイルシート言語の指定-->
<meta http-equiv="Content-Script-Type" content="text/javascript"><!--標準スクリプト言語の指定-->
</head>
<body>
<h1>TEst</h1>
<section><!--新たに追加されたタグの一つ-->
<h1>AAAAA</h1>
セクションタグの間にセクションの内容<br>
使い道がいまいちわからない
</section>
<nabi><!--見ての通りリンク集-->
<h2>便利なリンク集</h2>
<p>
<a href="http://google.com">ぐーぐる</a>
<a href="https://github.com/">github</a>
</p>
footerと見分けがつかない
</nabi>
<footer><!--fotterはページの最後に-->
<p>
<a href="http://www.nicovideo.jp/">ニコニコ動画</a>
<a href="https://www.ubuntulinux.jp/">安易にリンクを踏んではいけません</a>
</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment