美文网首页
python实战第一个练习:第一个网页

python实战第一个练习:第一个网页

作者: 豆子她老公狼狼 | 来源:发表于2016-08-29 22:47 被阅读42次

    看了示例的视频和资料,很快就完成了第一个网页!

    最终网页效果:

    屏幕快照 2016-08-29 下午10.16.51.jpg

    我的代码:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>The blah</title>
        <link rel="stylesheet" type="text/css" href="homework.css">
    </head>
    <body>
        <div class="header">
            <img src="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 />
            <ul class="photos">
                <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">
                    <p>in Indonesia has long been famous as a leading tourist
                        destination in terms of seaside travel, with its exotic
                        natural scenery and vibrant culture, the world for its
                        exotic and vibrant art and culture, Bali is an island
                        of paradise.
                    </p>
                </li>
            </ul>
        </div>
        <div class="footer">
            <p>&copy; Mugglecoding</p>
        </div>
    </body>
    </html>
    

    总结:

    • 了解了标签的含义
    • 理解了HTML、CSS和js的关系

    相关文章

      网友评论

          本文标题:python实战第一个练习:第一个网页

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