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" xml:lang"ja" lang"ja">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta http-equiv="Contnt-Style-Type" content="text/css">
<title>css記述</title>
<link rel="stylesheet" href="style.css" type="text/css"media="screen,print">
</head>
<div id="shopping">
body {
  background-color:#8fbc8b;
}
h1 {
  font-size:26px;
  color:4646f0;
}
h2 {
  font - size:2.0;
  color:white;
  padding - left:10px;
  backgroud - color: #3FA068;
}
p {
  font-size:16px;
  line-height:2em;
  padding:10px;
  color:#333;
  bakcground - color:#000080;
}
<h1>black cultuer</h1>
<h2>その歴史の中で</h2>
<p>まず始めに、彼らの歴史を著する前に断っておきたい。
彼らの歴史は何世紀も続くとても長いものであり、私達日本人の想像を絶する歴史も星の数程ある。<br>なので、ここで全てを紹介するのではなく、抑えておきたい部分だけを抜粋して彼らの歴史はどういったものなのかを綴っていきたい。

(※現時点では重要とされるマルコムXとキング牧師について簡単に紹介しています。)</p>

</body>
</html>

今日のおさらい

<?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" xml:lang="ja" lang"ja">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css"/>
<title>今日のおさらい1</title>
<style type="text/css">
ul {
  list-style-type: none;
}
li a {
  text-decoration: none;
  font-size: 2.0en;
  font-weight: bold;
  color: #000f0ff;
  margin-bottom;
  display: block;
  width: 350px;
}
li a:link  {
   background-color: #ff7f50;
}
li a:visited {
   background-color: #40e0d0;
}
li a:hover  {
   background-color: #87ceed;
}
li a:activ  {
   background-color: #7cfc00;
}
</style>
</head>
<body>
<ul>
<li><a href="#">LINK-link-color</a></li>
<li><a href="#">LINK-visited-color</a></li>
<li><a href="#">LINK-hover-color</a></li>
<li><a href="#">LINK-activ-color</a></li>
</ul>
</body>
</html>