練習項目:動手做自己的網頁,練習的結果是這樣的:
頁面
Paste_Image.png
代碼
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The blah homework-make your own webpage</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">
</li>
<li>
<img src="images/0002.jpg" width="150" height="150">
</li>
<li>
<img src="images/0003.jpg" width="150" height="150">
</li>
</ul>
<p>
This should be the first time I wrote a web page on my own. Thanks to Mugglecoding, I think your lessons are really interesting and useful. I do have faith that at the time when I finish this class I am able to do a lot of funny things with Python.
</p>
</div>
<div class="footer">
<p>?mugglecoding</p>
</div>
</body>
</html>
總結
- 課程的講解很深入淺出
- 萬事開頭難,希望自己有一個好的開始,更希望自己能一直堅持下去