one.css
h1,a{ color: blue; front-size:1px; } body{ color: coral; } p{ color: chartreuse;
/* 对齐方式 text-align: right; */
/* 首行缩进 text-indent: 10px; */
}
one.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link href="one.css" type="text/css" rel="stylesheet"> </head> <body> <h1> 应用样式表 </h1> <a>这是a标签</a> <h2>这是h3</h2> <p>Hello CSS!</p> </body> </html>
显示: