文本框和單選框

value="阿裡巴巴" 預設值
maxlength="5" 最長能寫幾個字元值
size="30" 文本框的長度
input type="radio"
value:單選框的值
name:表示組(就比如按性别為一組,name中必須一樣)
<p>性别
<input type="radio" value="boy" name="sex"/>男
<input type="radio" value="gril" name="sex"/>女
</p>