HTML5課題21〜24

HTML5課題21】

補足情報も含めて表示させなさい。

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>HTML5課題21</title>
<link rel="stylesheet" href="">
<script src=""></script>
<!--[if lte IE 9]>
<script src="http://html5shiv.googlecode.com/svn/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; }
body {
	width: 500px;
}
</style>
</head>
<body>
<header>
<h1>カフェランチブログ</h1>
</header>
<article>
<h2>7月1週目ランチ</h2>
<p>ランチ特製ロコモコ丼が人気です。ボリューム満点のハンバーグに特製ソースで味付け!ぜひ食べに来てくださいね。</p>
<p><img src="image/locomoco.jpg" width="481" height="319" alt="ハンバーグ、目玉焼き、トマト、サニーレタスがのったロコモコ丼"></p>
<aside>
<h3>ロコモコ丼の豆知識</h3>
<p>ハワイ島で学生向けのファーストフードとしてはじまったと言われています。</p>
</aside>
</article>
</body>
</html>

HTML5課題22】

写真と写真タイトルをまとめて表示させなさい。

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>HTML5課題22</title>
<link rel="stylesheet" href="">
<script src=""></script>
<!--[if lte IE 9]>
<script src="http://html5shiv.googlecode.com/svn/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; }
body {
	width: 500px;
}
</style>
</head>
<body>
<header>
<h1>カフェランチブログ</h1>
</header>
<article>
<h2>人気スイーツについて</h2>
<p>疲れた時に美味しいスイーツを食べると、疲れも吹っ飛びますね。人気のバナナ豆乳シェイクのようなドリンクをはじめ、スイーツの定番である自家製ケーキも各種取り揃えています。</p>
<figure>
<figcaption>自家製ケーキ</figcaption>
<img src="image/cake.jpg" width="481" height="318" alt="ベリーをたくさん乗せたタルトです">
</figure>
</article>
</body>
</html>

HTML5課題23】

連絡先を表示させなさい。

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>HTML5課題23</title>
<link rel="stylesheet" href="">
<script src=""></script>
<!--[if lte IE 9]>
<script src="http://html5shiv.googlecode.com/svn/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; }
body {
	width: 500px;
}
</style>
</head>
<body>
<header>
<h1>カフェランチブログ</h1>
</header>
<article>
<h2>7月1週目ランチ</h2>
<p>ランチ特製ロコモコ丼が人気です。ボリューム満点のハンバーグに特製ソースで味付け!ぜひ食べに来てくださいね。</p>
<p><img src="image/locomoco.jpg" width="481" height="319" alt="ハンバーグ、目玉焼き、トマト、サニーレタスがのったロコモコ丼"></p>
<aside>
<h3>ロコモコ丼の豆知識</h3>
<p>ハワイ島で学生向けのファーストフードとしてはじまったと言われています。</p>
</aside>
<address>当ブログに関するご意見等 cafelunch@xxx.com までどうぞ。</address>
</article>
</body>
</html>

HTML5課題24】

著作権表記を表示させなさい。

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>HTML5課題24</title>
<link rel="stylesheet" href="">
<script src=""></script>
<!--[if lte IE 9]>
<script src="http://html5shiv.googlecode.com/svn/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; }
body {
	width: 500px;
}
</style>
</head>
<body>
<header>
<h1>カフェランチブログ</h1>
</header>
<article>
<h2>7月1週目ランチ</h2>
<p>ランチ特製ロコモコ丼が人気です。ボリューム満点のハンバーグに特製ソースで味付け!ぜひ食べに来てくださいね。</p>
<p><img src="image/locomoco.jpg" width="481" height="319" alt="ハンバーグ、目玉焼き、トマト、サニーレタスがのったロコモコ丼"></p>
<aside>
<h3>ロコモコ丼の豆知識</h3>
<p>ハワイ島で学生向けのファーストフードとしてはじまったと言われています。</p>
</aside>
</article>
<footer>
<address>当ブログに関するご意見等 cafelunch@xxx.com までどうぞ。</address>
<p><small>Copyright (c) 2012 Star Cafe All Rights Reserved.</small></p>
</footer>
</body>
</html>