ウェブ学のすすめ

Study of Web Design & Programing

HTML5の基本構造|HTML5課題01

課題

HTML5課題01】
ドキュメントタイプ宣言を記述し、エンコードタイプを「UTF-8」で記述しなさい。

引用元基本構造とテキストの論理構造 - Webデザインの勉強|忘筌

解答

プレビュー

コード
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>HTML5の基本構造</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>
	    
</body>
</html>