Python 入門指南 5.0

exercise3906.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
    <!-- 設定網頁編碼 -->
    <meta charset="utf-8">
    <!-- 設定標題列文字 -->
    <title>HTML 5 練習</title>
</head>

<body>
    <h1>H1 標題</h1>
    
    <form>
        <p>
            <input type="button" id="button_1" value="按鈕" />
        </p>
        <p>
            <input type="checkbox" id="choice_1" />
            <label for="choice_1">選擇</label>
        </p>
        <p>
            <input type="color" id="color_1" value="#ff0000" />
        </p>
        <p>
            <input type="date" id="date_1" value="2023-12-05" />
        </p>
        <p>
            <input type="datetime-local" id="datatime_1" />
        </p>
        <p>
            <input type="email" id="email_1" />
        </p>
        <p>
            <input type="file" id="file_1" />
        </p>
        <p>
            <input type="image" id="image_1" />
        </p>
        <p>
            <input type="number" id="number_1" />
        </p>
        <p>
            <input type="password" id="password_1" />
        </p>
        <p>
            <input type="radio" id="radio_1" />
            <label for="radio_1">選擇</label>
        </p>
        <p>
            <input type="range" id="range_1" />
        </p>
        <p>
            <input type="reset" id="reset_1" />
        </p>
        <p>
            <input type="search" id="search_1" />
        </p>
        <p>
            <input type="submit" id="submit_1" />
        </p>
        <p>
            <input type="text" id="text_1" />
        </p>
        <p>
            <input type="time" id="time_1" />
        </p>
    </form>
</body>
</html>

<!-- 檔名: exercise3906.html
     說明:《Python入門指南》的範例程式
     網站: http://kaiching.org
     作者: 張凱慶
     時間: 2023 年 12 月  -->

回到練習題目
上一頁 exercise3905.html
回 Python 入門指南 5.0 首頁
下一頁 exercise3907.html
回 Python 教材首頁
回程式語言教材首頁