HTML网页搭建实战

  1. <meta charset="UTF-8">
    <title>网页实战</title> </head> <body> <style>
    footer{
        color: aquamarine;
        size: A5;
        font-family: "AR ESSENCE";
    } </style> <header>
    <img src="https://p1.ssl.qhimg.com/t0151320b1d0fc50be8.png"> <br>       
    <h1>网页大纲实战</h1>
    <nav>
        <ul>
            <a href="index2.html">首页</a><br>
            <a href="index.html">内容页</a><br>
        </ul>
    </nav> </header> <article>
    <h1>文章主标题</h1>
    <h2>文章子标题</h2>
    <p>文章内容</p>
    <section>
        <article>
            <h1>评论标题A</h1>
            <p>评论内容A</p>
        </article>
        <article>
            <h1>评论标题B</h1>
            <p>评论内容B</p></article>
    </section> </article> <footer>
    <small>
    网站信息<br>
    网站导航<br>
    网站举报<br>
    </small> </footer>
    

猜你喜欢

转载自blog.csdn.net/xiaoyaosheng19/article/details/82797728