Python 入門指南 5.0
exercise4005.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 | <!DOCTYPE html>
<html>
<head>
<!-- 設定網頁編碼 -->
<meta charset="utf-8">
<!-- 設定標題列文字 -->
<title>HTML 5 練習</title>
<!-- 設定樣式 -->
<style>
pre {
border: 1px dotted;
margin: 1em;
padding: 1em;
}
</style>
</head>
<body>
<h1>H1 標題</h1>
<pre>段落文字
段落文字
段落文字
段落文字
段落文字</pre>
</body>
</html>
<!-- 檔名: exercise4005.html
說明:《Python入門指南》的範例程式
網站: http://kaiching.org
作者: 張凱慶
時間: 2023 年 12 月 -->
|