<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
		<!--css书写中:-->
			<!--1.css 由属性名:属性值构成-->
			<!--style="color: red;font-size: 20px;"整体在HTML中是一个属性,但在CSS中color,font-size是属性名,red,20px是属性值-->
			<!--2.属性值是对属性的相关描述-->
			<!--3.属性名必须是一个合法有标识符-->
		
			
		
		<div id="zxw" style="color: red;font-size: 20px;">
			我爱学习,设置成红色
		</div>
		
	</body>
</html>




















