



<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
* {
font-size: 30px;
color: rgb(56, 81, 195);
letter-spacing: 5px;
}
body{
height:2000px;
background:yellow url(image/1.jpg) no-repeat center center fixed;
background-size: 100% 100%;
}
.big {
font: italic bold 1.5em 华文细黑;
color: red;
text-decoration: line-through;
}
.me {
font: italic 2em 幼圆字体;
color: #00ffff;
text-decoration: underline;
}
#eye {
font-weight: bold;
font-size: 20px;
color: #f00;
text-decoration: overline;
}
#box {
background-color:rgba(226,226,226,0.5);
text-align: center;
text-indent: 5em;
line-height: 400px;
}
</style>
</head>
<body>
<div id="box">
<span class="big">黑夜</span>给了<span class="me">我</span>一双<span class="big">黑色</span>的<span
id="eye">眼睛</span>,
<span class="me">我</span>却用它来寻找<span class="big">光明</span>。
</div>
</body>
</html>
