<!DOCTYPE html>
<html>
<head><meta charset="utf-8"/><title>網頁設計作業</title>
</head>
<body><h2>問卷調查</h2><p><strong>1、你是通過什么途徑來到綠葉學習網的?</strong></p><ol type="A"><li>百度搜索</li><li>谷歌搜索</li><li>其他途徑</li></ol><p><strong>2、你覺得這本書怎么樣?(多選)</strong></p><ul><li>通俗易懂,輕松幽默</li><li>內容豐富技巧賊多</li><li>三個字,好到爆!</li></ul>
</body>
</html>

<!DOCTYPE html>
<html>
<head><meta charset="utf-8"/><title>網頁設計作業</title><style type="text/css">table,tr,td,th{border:1px solid silver;}</style>
</head>
<body><table><caption>學生成績表</caption><thead><th>姓名</th><th>性別</th><th>成績</th></thead><tbody><tr><td>張三</td><td>男</td><td>250</td></tr><tr><td>李四</td><td>男</td><td>520</td></tr></tbody><tfoot><tr><td>平均分</td><td>385</td></tr></tfoot></table>
</body>
</html>入代碼片

<!DOCTYPE html>
<html>
<head><meta charset="utf-8"/><title>網頁設計作業</title></style>
</head>
<body><form method="post">姓名:<input type="text" size="15" value="Tom"/><br/>密碼:<input type="password" size="15" maxlength="10" value="******"/><br/>性別:<input type="radio" name="gender" value="男" checked/>男<input type="radio" name="gender" value="女"/>女<br/>愛好:<input type="checkbox" name="hobby" value="java" checked/>java<input type="checkbox" name="hobby" value="game" checked/>game<input type="checkbox" name="hobby" value="sing"/>sing<br/>圖像:<input type="file" value="2.jpg"/><br/>生日:<input type="date" value="2023-03-08"/><br/>時間:<input type="time" value="16:13"/><br/>日期時間:<input type="datetime-local" name="datetime" value="2023-03-09T17:10"><br/>郵箱:<input type="email" value="java@163.com"/><br/>年齡:<input type="number" value="18"><br/>學歷:<select><option>初中</option><option>高中</option><option selected>本科</option></select><br/>描述:<textarea rows="8" cols="20">11111111</textarea><br/><input type="button" value="按鈕"/><input type="reset" value="重置"/><input type="submit" value="提交"/></form>
</body>
</html>
