<html>
<head>
<style type="text/css">
/*
1.元素选择器
修改对应的元素的样式
*/
body{
background-color: green;
}
h1{
text-align: center;
font-size: 20px;
}
P{
text-align: center;
}
</style>
</head>
<body>
<h1>离骚
<span>屈原</span>
</h1>
<p>
路漫漫其修远兮 <br />
吾将上下而求索 <br/>
路漫漫其修远兮 <br/>
吾将上下而求索
</p>
</body>
</html>