简单的企业站头部

Original 2019-04-08 17:25:05 210
abstract:<!DOCTYPE html> <html>     <head>         <meta charset="utf-8">      &
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            header{width: 100%; border-bottom: 3px solid #FF0000; padding: 10px 0px; display: inline-block;}
            section{width: 1200px; margin: 0px auto;}
            div{float: left; height: 60px; width: 120px; background: #ddd;   }
            nav{ float: right;}
            a{ float: left; padding: 0px 20px; text-decoration: none; line-height: 60px; }
            a:hover{color: #ff0000; font-weight: 600;}
        </style>
    </head>
    <body>
        <header>
            <section>
                <div>这里是logo</div>
                <nav>
                    <a href="">首页</a>
                    <a href="">关于我们</a>
                    <a href="">产品案例</a>
                    <a href="">新闻动态</a>
                    <a href="">联系我们</a>
                </nav>
            </section>
        </header>
    </body>
</html>


Correcting teacher:西门大官人Correction time:2019-04-09 10:27:46
Teacher's summary:代码结构很清晰,最好能上传一下程序的去运行效果图

Release Notes

Popular Entries