散文集

来源:互联网 发布:java语言规范8pdf 编辑:程序博客网 时间:2024/04/27 08:48
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>周考一</title>
<link rel="stylesheet" type="text/css" href="周考一.css" />
</head>

<body>
<div class="box">
    <div class="header">
        <div class="tran">
        <p class="name"><span class="font">散文集</span>朱自清</p>
            </div>
            <div class="nav">
            <ul class="ul">
                <li>作者生平</li>
                    <li>故事背景</li>
                    <li>词语注释</li>
                    <li>作者手法欣赏</li>
                    <li>上一篇文章</li>
                    <li>下一篇文章</li>
                </ul>
            </div>
        </div>
        <div class="footer">
        <div class="left">
            <h4>荷塘月色(节选)</h4>
                <p>这几天心里颇不宁静。今晚在院子里坐着乘凉,忽然想起日日走过的荷塘,在这满月的光里,总该另有一番样子吧。月亮渐渐地升高了,墙外马路上孩子们的欢笑,已经听不见了;妻在屋里拍着闰儿,迷迷糊糊地哼着眠歌。我悄悄地披了大衫,带上门出去。<p>沿着荷塘,是一条曲折的小煤屑路。这是一条幽僻的路;白天也少人走,夜晚更加寂寞。荷塘四面,长着许多树,蓊蓊郁郁的。路的一旁,是些杨柳,和一些不知道名字的树。没有月光的晚上,这路上阴森森的,有些怕人。今晚却很好,虽然月光也还是淡淡的。</p><p> <span style="font-size:40px;">路</span>上只我一个人,背着手踱着。这一片天地好像是我的;我也像超出了平常的自己,到了另一世界里。我爱热闹,也爱冷静;爱群居,也爱独处。像今晚上,一个人在这苍茫的月下,什么都可以想,什么都可以不想,便觉是个自由的人。白天里一定要做的事,一定要说的话,现在都可不理。这是独处的妙处,我且受用这无边的荷香月色好了。</p>
               
               </p>
            </div>
            <div class="right">
            <dl>
                <dt><img src="作者.png" /></dt>
                    <dd>作者简介:
朱自清(1898年11月22日—1948年8月12日),原名自华,号秋实,后改名自清,字佩弦。中国现代散文家、诗人、学者、民主战士
</dd>
                </dl>
            </div>
        </div>
    </div>
</body>

</html>









@charset "utf-8";
/* CSS Document */
.box{
width:1100px;
height:550px;
/*background:red;*/
margin:0 auto;}
.header{
width:1100px;
height:155px;
background:#AAAC90;}
.header .name{
font-weight:600;
margin-left:100px;
padding-top:30px;}
.header .name .font{
color:#A32627;
font-size:32px;
}
.tran{
transition:all 2s ease;
width:300px;
height:110px;
}
.tran:hover{
transform:rotate(360deg);}
.header .nav{
width:595px;
height:35px;

line-height:35px;
}

.nav .ul li{
float:left;
list-style:none;
background:#5D91EC;
text-align:center;
width:85px;
height:35px;
color:#FFF;
margin-left:1px;
transition:all 2s ease;
}
.ul li:hover{
background:red;
color:yellow;
font-size:24px;
}
.footer{
width:1100px;
height:395px;
/*background:green;*/}
.left{
width:700px;
height:395px;
/*background:blue;*/
float:left;
}
.left h4{
margin-left:100px;}
.left p{
margin-left:100px;
text-indent:2em;
height:80px;}
.right{
width:400px;
height:395px;
/*background:red;*/
float:right;}
.right dl{
width:290px;
height:390px;
background:#000;
text-align:center;
margin-left:20px;
margin-top:3px;
color:#FFF;}