授業日誌 positionの追記

<?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>position</title>
<style type="text/css">
<!--
*{
	margin: 0;
	padding: 0;
}
#header {
background-color: aqua;
width:800px;
height:150px;
position:relative;
}
#header-inner  {
position: absolute;
 top: 120px;
right: 40px;
}
#header-inner  li {
fonto-size: 0.85em;
display: inline;
padding: 0 1me  0  0;
}
ul {
list-style-type: none;
}
#footer {
 background-color: lightgray;
 color: white;
 width: 800px;
 height: 50px;
 text-align: center; 
 padding: 20px 0 0 0;
} 
-->
</style>
</head>
<body>
<div id="container">
   	 <div 	id="header">
    		 <div  id="header-inner">
<ul>
  <li><a href="#">このサイトについて</a></li>
  <li><a href="#">お問い合わせ</a></li>
  <li><a href="#">サイトマップ</a></li>
</ul>
					</div>
			</div>
	<div id="footer">
<address>ここに連絡先のテキストが入る</address>
	</div>
</div>
</body>
</html>