HTML5活動報名模板代碼
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>活動報名</title> </head> <body> <form> <p>請輸入您的姓名:</p> <input type="text" name="name"> <p>請輸入您的手機號碼:</p> <input type="text" name="phone"> <p>請輸入您的電子郵箱:</p> <input type="email" name="email"> <p>請選擇您的參與方式:</p> <select name="join"> <option value="1">線下報名</option> <option value="2">線上報名</option> </select> <p>請選擇您的性別:</p> <input type="radio" name="gender" value="male">男性 <input type="radio" name="gender" value="female">女性 <p>請選擇您的職業(yè):</p> <input type="checkbox" name="profession" value="student">學(xué)生 <input type="checkbox" name="profession" value="engineer">工程師 <input type="checkbox" name="profession" value="artist">藝術(shù)家 <p>請?zhí)顚懩牧粞?</p> <textarea name="message"></textarea> <br> <input type="submit" value="提交"> </form> </body> </html>
上一篇html5測評代碼
下一篇html5浮動窗代碼