您的位置:首页 > 编程语言 > Python开发

Python实战——1_1.网页制作

2016-05-15 12:21 603 查看

Python实战——1_1.网页制作

引言

网页的组成部分:

CSS样式 - 给结构以装饰

Html - 结构部分

JavaScript- 功能实现

代码部分

第一部分为网站的基本结构(在IDE中新建网页后既给出)

<!DOCTYPE html>
<html lang="en">
<head><!--head部分,填入给浏览器看的内容(以下文字部分均为注释)-->
<meta charset="UTF-8"><!--编码的解释说明,utf-8即可以引入中文(不同于ASCII)-->
<title>The blah</title><!--head部分,标题-->
<link rel = "stylesheet" type = "text/css" href = "main.css">
</head><!--head的结束标签-->
<body><!--body部分,网页的“躯干”-->
<div>
<img src =
</div>
</body>
</html><!--网页的结束标签-->


下面是填充了基本内容的代码:

<!DOCTYPE html>
<html lang="en">
<head> <!--head部分,填入给浏览器看的内容(以下文字部分均为注释)-->
<meta charset="UTF-8">
<title>The blah</title>
<link rel="stylesheet" type="text/css" href="homework.css"> <!--引用文件夹中的css样式:homework.css-->
</head>
<body> <!--body部分,填入在网页上可见的内容,也就是给人看的内容-->
<div class="header"> <!--第一个div,对应header头部部分,使用class=""引用css中对应的样式-->
<img src="images/blah.png"> <!--引用logo图片-->
<ul class="nav"> <!--使用ul标签构建导航模块,并且引用导航样式-->
<li><a href="#">Home</a></li>  <!--使用三个li标签套嵌a标签,创建3个带链接的导航栏-->
<li><a href="#">Site</a></li>
<li><a href="#">Other</a></li>
</ul>
</div>
<div class="main-content"> <!--第二个div,对应content内容部分-->
<h2>The Beach</h2>  <!--使用h2标签实现标题样式-->
<hr>  <!--使用hr标签实现水平分割线,需要注意的是这个标签比较特殊,在html中只有开始标签<hr>,没有结束标签</hr>-->
<ul class="photos"> <!--使用ul标签构建图片模块,并且引用图片样式-->
<li><img src="images/0001.jpg" width="150" height="150" alt="Pic1"></li> <!--使用三个li标签套嵌img标签,创建3个并列的图片,图片限定了宽高;alt是 img标签的属性,是图片的文字提示-->
<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> <!--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">  <!--第三个div,对应footer页脚部分-->
<p>© Mugglecoding</p> <!--©是©的固定写法-->
</div>
</body>
</html>


生成一个脚注1.

目录

[TOC]
来生成目录:

Python实战1_1网页制作

引言

代码部分



目录

代码块第二部分,即“填充了基本内容的代码”引用作业部分代码。

这里是 脚注 的 内容.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: