美文网首页
Python实战作业1-1:做一个网页

Python实战作业1-1:做一个网页

作者: 浮生只言片语 | 来源:发表于2017-05-19 22:16 被阅读9次

    网页效果:

    Snip20170519_1.png

    代码:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>第一次作业</title>
        <link rel="stylesheet" typc="text/css" href="homework.css">
    </head>
    <body>
        <div class="header">
            ![](images/blah.png)
            <ul class="nav">
                <li><a href="#">Home</a></li>
                <li><a href="#">Site</a></li>
                <li><a href="#">Other</a></li>
            </ul>
        </div>
        <div class="main-content">
            <h2>The Beach</h2>
            <hr>
            <li>
                <img src = "images/0001.jpg" width="150" height="150">
                <img src = "images/0002.jpg" width="150" height="150">
                <img src = "images/0003.jpg" width="150" height="150">
                </li>
            <p>
                stretching from Solta to Mljet, and this unique cycling trip captures the highlights with an ideal balance of activity, culture and relaxation. Experience the beautiful island of Korcula with its picturesque old town, the untouched beauty of Vis, and trendy Hvar with its Venetian architecture. In the company of a cycling guide, this stimulating journey explores towns and landscapes, many of which are on UNESCO's world heritage list. Aboard the comfortably appointed wooden motor yacht, there is ample time between cycles to swim in the azure waters and soak up the ambience of seaside towns.
            </p>
        </div>
        <div class="footer">
           <p>&copy MUGGLECODING</p>
        </div>
    </body>
    </html>
    

    参考资料:

    html资料: http://www.w3school.com.cn/tags/tag_img.asp

    相关文章

      网友评论

          本文标题:Python实战作业1-1:做一个网页

          本文链接:https://www.haomeiwen.com/subject/viluxxtx.html