Python实战计划学习笔记1-1:做一个简单的网页

2016-11-09  本文已影响0人  草籽啊

新手学习python第一天,做了一个简单的网页。

最终成果:

2016-11-09 17-16-05屏幕截图.png

接下来是代码:

<!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" alt="Pic1"></li>
                <li><img src="images/0003.jpg" width="150" height="150" alt="Pic1"></li>
                <li><img src="images/0004.jpg" width="150" height="150" alt="Pic1"></li>
        </ul>
        <p>John Lennon once said,‘Life is what’s happening while we’re busy making other plans.
            ’When we’re busy making ‘other plans’,our children are busy growing up,
            the people we love are moving away and dying,our bodies are getting out of shape,
            and our dreams are slipping away.In short,we miss out on life.
        </p>
        <hr>
    </div>
    <div class="footer">
        <p>©Mugglecoding</p>
    </div>
</body>
</html>



总结:

上一篇 下一篇

猜你喜欢

热点阅读