Загрузка данных


<!DOCTYPE html>
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>Основы HTML и CSS</title>
	<link rel="stylesheet" type="text/css" href="style.css"  />
</head>
<body>
	<div id="container">
		<div id="header">
			Шапка сайта
		</div>
		<div id="navigation">
			Блок навигации
		</div>
		<div id="menu">
			Меню
		</div>
		<div id="content">
			Контент
		</div>
		<div id="clear">
		</div>
		<div id="footer">
			Подвал сайта
		</div>
	</div>
</body>
</html>
		

body {
        background: #f3f2f3;
        color: #000000;
        font-family: Trebuchet MS, Arial, Times New Roman;
        font-size: 12px;
}

#container {
        background: #FFFFFF;
        margin: 30px auto;
        width: 900px;
        height: 1000px;
}

#header {
        background: #838283;
        height: 200px;
        width: 900px;
}

#navigation {
        background: #a2a2a2;
        width: 900px;
        height: 20px;
}

#menu {
        background: #333333;
        float: left;
        width: 200px;
        height: 600px;
}

#content {
        background: #d2d0d2;
        float: right;
        width: 700px;
        height: 600px;
}

#clear {
        clear: both;
}

#footer {
        background: #838283;
        height: 180px;
        width: 900px;
}