* Programming/HTML&CSS
[HTML]Form(input, select, checkbox, radio)
고경a
2016. 9. 6. 19:09
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 | <html> <head></head> <body> <h1>회원가입</h1> <form action="ex01.html"> id:<input type="text" size="10"><br> pw:<input type="password" maxlength="5"><br> 취미: <select> <option>농구</option> <option selected="selected">배구</option> <option>야구</option> </select><br> 관심사: <input type="checkbox">java <input type="checkbox" checked="checked">web <input type="checkbox">spring <br> 하나만 선택: <input type="radio" name="red">java <input type="radio" name="red" checked="checked">spring <input type="radio" name="red">web<br> <input type="file">file <br> <textarea rows="5" cols="10"></textarea> <br> <input type="submit" value="입력"> <input type="reset" value="취소"> </form> </body> </html> | cs |