練習問題 CSSで色を設定する。





<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>ホームページ</title>
<style type="text/css">
<!--
body {
  background-color: #64b5d1;
}
h1 {
  color: #ffffff;
  font-size: 2.0em;
  background-color: #cc0000;
}
p {
  color: #04ff05;
  font-size: 1.0em;
  line-height: 1.8;
}
-->
</style>
</head>
<body>
<h1>大見出し</h1>
<p>内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容</p>
</body>
</html>