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