CSSタグを含むhtmlファイルも実行しようとしています。しかし出力では、HTMLタグの出力だけを見ることができ、CSSタグは出力できません。私はすべてのブラウザでこれを試しましたが、何が問題なのか分かりますか?ここでCSSスクリプトが動作しない
<?xml version=”1.0” encoding=”UTF-16”?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN”
“http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”en”>
<head>
<title>Bohemia</title>
</head>
<body>
<div style=”text-align:center”>
<h1>Bohemia</h1>
<h2>by Dorothy Parker</h2>
</div>
<p style=”text-align:left”>
Authors and actors and artists and such<br />
Never know nothing, and never know much.<br />
Sculptors and singers and those of their kidney<br />
Tell their affairs from Seattle to Sydney.
</p>
<p style=”text-align:center”>
Playwrights and poets and such horses’ necks<br />
Diarists, critics, and similar roe<br />
Never say nothing, and never say no.
</p>
<p style=”text-align:right”>
People Who Do Things exceed my endurance;<br />
God, for a man that solicits insurance!
</p>
</body>
</html>
(出力)のCSSアライメントタグが機能していない:
は、ここに私のファイルです。