新手学习python第一天,做了一个简单的网页。
最终成果:
接下来是代码:
<!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>
总结:
- 要确保网页文件和图片在一个文件夹里
- css是现成的直接在html里引用就行
- 学会了标签的使用方式
-
只用一个开始标签 - 感觉良好,对学习python充满信心