标签:stylesheet css
h1 {font-size: 15px; font-weight: bold; color: red;}
<head> <title>title of article</title> <!-- 这里的link元素可以使用绝对路径,也可以使用相对路径--> <link rel="stylesheet" href="css/main.css" type="text/css"> </head> <body> </body>
<html> <head> <style type="text/css"> h2 {font-size: 15px; font-weight: bold; color: blue} </style> </head> <body> </body>
<h3 style="font-size:14px;color:green;"> h3标签内的内容! </h3>
标签:stylesheet css
原文地址:http://blog.csdn.net/u011794238/article/details/45951679