//方法1,在head中添加style标签编写css
<html>
<head>
<style type="text/css">
h1 {color:red}
p {color:blue}
</style>
</head>
<body>
<h1>Header 1</h1>
<p>A paragraph.</p>
</body>
</html>
//方法2,在标签中添加style属性编写css
<div style="height: 715px; background-color: #f00;"></div>
//方法3,引入外部的一个样式文件,在头部<head></head>里引入,比如:
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/main.css">