ウェブ学のすすめ

Study of Web Design & Programing

注釈を表す「small要素」|HTML5課題14

課題

コピーライトを表示させなさい。

引用元テキストの論理構造(3) - Webデザインの勉強|忘筌

解答

プレビュー

スマートフォンの方はこちらからプレビューできます。
注釈を表す「small要素」

コード
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>注釈を表す「small要素」</title>
<link rel="stylesheet" href="#">
<script src="#"></script>
<!--[if lte IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->
<style>
  article, aside, dialog, figure, footer, header,
  hgroup, menu, nav, section { display: block; }
</style>
</head>
<body>
<h1>コピーライトを表示</h1>
<p>コピーライトとは著作権という意味です。</p>
<p><small>Copyright &copy; studio felica Inc.All rights Reserved.</small></p>
</body>
</html>

ポイント

  • small要素:免責事項、著作権表記、ライセンス要件のような注釈を表す