Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 윈도우 #단축키
- function
- 코틀린#클래스#상속
- 오라클
- 상속
- Event
- array
- jQuery
- 연락처 프로그램
- GUI
- String
- Method
- kotlin #return #jump
- 다형성
- property
- 연산자
- 자바
- File 클래스
- css
- jsp
- Java
- 데이터베이스
- list
- html
- 파일 입출력
- javaservlet
- spring
- 설치
- JavaScript
- springframework
Archives
- Today
- Total
Binary World
<HTML> Form Type 본문
<여러가지 Form Type>
<14_form.html>
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 | <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Form</title> </head> <body> <h1>여러가지 form 요소들</h1> <!-- input은 컨텐츠를 가질 수 없는 태그 input은 value라는 속성을 사용하여 컨텐츠를 입력 --> <form action="result.html" method="get"> <textarea rows="5" cols="100" name = "contract"> </textarea><br/> <input type="radio" name="gender" value="male"/>남자 <input type="radio" name="gender" value="female"/>여자 <br/> <input type="checkbox" name="hobby" value="movie"/>영화 <input type="checkbox" name="hobby" value="music"/>음악 <input type="checkbox" name="hobby" value="webtoon"/>웹툰 <br/> <select name="coffee"> <option>아메리카노</option> <option>라떼</option> <option>카푸치노</option> </select> <br/> <input type="file" name="profile"/> <br/> <input type="submit" value="제출" /> </form> </body> </html> | cs |
'개발자의 길 > Web Programming' 카테고리의 다른 글
<CSS> CSS 적용 순서 (0) | 2017.03.30 |
---|---|
<CSS> CSS 선언 및 적용 (0) | 2017.03.30 |
<HTML> Input Type (0) | 2017.03.29 |
<HTML> 데이터 보내기(GET/POST) (0) | 2017.03.29 |
<HTML> 페이지 내에 링크 사용 (0) | 2017.03.29 |
Comments