首页 > 代码库 > css_1

css_1

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus?">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>css基础1</title>
<link rel="stylesheet" type="text/css" href="http://www.mamicode.com/style.css" />
<style >
p{color:blue;text-align: center;}
h1{color:#999999;font-size: 12px;}


</style>

</head>
<body>
<p>我是段落</p>
<p style="color:black;text-align: right;">我是段落2</p>

<h1>我是标题</h1>



</body>
</html>

css_1