美文网首页
麻瓜编程·python实战·1-1作业:动手做网页

麻瓜编程·python实战·1-1作业:动手做网页

作者: bbjoe | 来源:发表于2016-08-08 10:56 被阅读0次

第一天,感觉还不错。

这是成果

my_first_website

这是代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>The blah</title>
    <link rel="stylesheet" text="text/css" href="homework.css">
</head>
<body>
    <div class="header">
        [站外图片上传中……(2)]
        <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>
                [站外图片上传中……(3)]
            </li>
            <li>
                [站外图片上传中……(4)]
            </li>
            <li>
                [站外图片上传中……(5)]
            </li>
        </ul>
        <p>
                One of the most beautiful and best island countries in the world is the Philippines. It’s actually a geographically gorgeous place worth vising any time of the year. The Philippines contain over 7,000 islands, and all of them are beautiful and unique in their own way. There are many wonderful tourist attractions including the Tubbataha Reef, Mayon Volcano, Banaue Rice Terraces, Puerto Galera, Donsol, the Chocolate Hills and many more. The country also offers plenty of interesting activities for you to experience, such as diving, climbing, camping, hiking, bird watching and many others.
        </p>
    </div>
    <div class="footer">
        <p>&copy;JD coding</p>
    </div>
</body>
</html>

我的感想:

  • 初步体验了利用现成的css和图片文件创建网站(以后做简单的网页可以利用哈哈哈)
  • 有种蛋蛋的成就感,非常乐意继续学习下去
  • 如果要学习建网站,起码要把html、css过一遍吧,啊,想到就颤抖。

相关文章

网友评论

      本文标题:麻瓜编程·python实战·1-1作业:动手做网页

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