console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>盒子模型</title>
<style type="text/css">
#box {
margin: 20px;
border: 5px solid #999;
padding: 10px;
width: 300px;
height: auto;
font-size: 12px;
}
p {
text-indent: 2em;
}
</style>
</head>
<body>
<div id="box">
<p>标准不是某一个标准,而是一系列标准的集合。网页主要由三部分组成:结构(Structure)、表现(Presentation)和行为(Behavior)。</P>
<p>内容和形式分离,网页前台只需要显示内容就行,形式上的美工交给CSS来处理。</p>
</div>
</body>
</html>