HTML簡單表單
阿新 • • 發佈:2019-02-11
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>表單</title> </head> <body> <form> 使用者名稱: <input type="text"> <br/><br/> 密碼: <input type="password"> <br/> <!--複選框--> 你喜歡的水果? <br/> <input type="checkbox">橘子 <input type="checkbox">香蕉 <input type="checkbox">蘋果 <br/> <!--單選按鈕 radio--> 請選擇您的性別: <input type="radio" name="sex">男 <input type="radio" name="sex">女 <br/> <!--下拉列表--> <select> <option>百度</option> <option>新浪</option> <option>谷歌</option> </select> <br/> <input type="button" value="按鈕"> <br/> <input type="submit"> </form> <!--文字域--> <textarea rows="30" cols="30">請在此填寫個人資訊</textarea> </body> </html>