美文网首页
Python实战作业1

Python实战作业1

作者: 风住尘香hcl | 来源:发表于2016-07-13 11:54 被阅读0次

效果

Paste_Image.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="Pic2"></li>
            <li><img src="images/0004.jpg" width="150" height="150" alt="Pic3"></li>
        </ul>
        <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代码,其实就是一些简单的嵌套中再嵌套
  • 熟悉一些常用关键字<div></div>...等
  • 由于不懂css独立做一个还是不可能
  • 单了解网页代码,结构还是相对容易

相关文章

  • Python实战作业1

    效果 代码 总结 复杂的html代码,其实就是一些简单的嵌套中再嵌套 熟悉一些常用关键字 ...等 由于不懂cs...

  • python实战作业1-1

    由于自己有前端基础,实话说这个练习对我来说意义不大。。。然后也比较懒,就完成作业为主了。 最终页面效果 html代码:

  • 石头的作业~第一周第一节练习项目动手做自己的网页

    实战计划0430-石头的练习作业 学习python实战计划的作业,按进度要求提交作业,其实提交作业我是不愿意的,都...

  • Python爬虫实战笔记_1 实战作业

    爬取商品信息 由于58的二手商品平台转转上线,爬取的方法与老师的讲解有一些不一样: 58的二手商品新平台转转,全是...

  • Python 实战:week1 实战作业

    运行结果: 代码: 项目代码 小结 获取内容 body 和 head 不一定要从 HTML 的 body 中获取,...

  • 发现一个免费获取python作业答案的好地方

    本公众号致力于分享python作业答案,请先扫码关注【python实战技巧】公众号,后根据如下步骤获取答案: 1....

  • Python 实战计划1.2作业

    Python 实战计划1.2作业 解析这个本地网页,获取以上信息 我的代码: 总结: 1. 用 beautiful...

  • python实战作业1-2

    代码: 输出结果 find_all函数调试了比较久的时间,不过总体来说还是在控制范围内。

  • python实战作业1-3

    感觉比上一章的作业简单,十几分钟搞定了。 输出结果 内容太多了我就不写了

  • python实战作业1-4

    由于课程上提供的网站访问不了,就随便找了一个网站来爬地址是http://guo.lu(好像是个很文艺的网站啊XD)...

网友评论

      本文标题:Python实战作业1

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