HTML言語におけるページ文字セット符号化設定(多言語符号化)

1274 ワード

<head>
<style type="text/css">
p:first-child {font-weight: bold;}
li:first-child {text-transform:uppercase;}
</style> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
</head>

漢字を表示
<!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7">
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8">
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html>
<!--<![endif]-->

<head>
<style type="text/css">
p:first-child {font-weight: bold;}
li:first-child {text-transform:uppercase;}
</style> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
</head>

<body>
<div>
<p>These are the necessary steps:</p>
<ul>
<li>Intert Key</li>
<li>Turn key <strong>clockwise</strong></li>
<li>Push accelerator</li>
</ul>
<p>Do <em>not</em> push the brake at the same time as the accelerator.</p>
</div>

<p><b> :</b>  DOCTYPE,  :first-child   IE  。</p>
</body>

</html>