검색결과 리스트
글
유용한 HTML태그들
1. iframe
-HTML문서에 다른 HTML문서 삽입
-속성 (align, frameborder,height, width, marginheight, margiwidth,name, scorolling,src)
2. marquee
-IE(인터넷 익스플로어)에서 메시지 스크롤
-속성(behavior, direction, scrollamount, scrolldelay, height, width, onmouseover, onmouseout)
3. meta
-웹브라우저의 행동제어, 검색 키워드 저장
-head 태그 내에 저장
-속성
"http-equiv","name" :이름
-"content" :값
4. form
-HTML에서 사용자가 값을 입력할 수 있도록 제공
- input, select, textarea 사용할 수 있다
-속성(action, method, enctype, target, onsubmit, onreset) on이 붙은건 이벤트라 본다
* GET방식 - 문서를 요청하는 방식, 페이지를 이동하고자 할때
*POST - 데이터를 전달하는 방식
5. input (form 태그 안에 있다)
-사용자가 값을 입력
-속성( name, type, value, checked, size, maxlength
-type종류 (button, text, password, chechbox, radio, submit, reset, hidden, image, file)
6. 폼 관련 태그들( select, option)
-드롭 다운 형태의 메뉴
-아이템을 표기하기 위해 option 태그 사용
-속성(name, size, multiple, onfocus, onblur, onchange)
7.폼 관련 태그들(textarea)
-여러 줄에 걸쳐 글을 입력할 때 사용
-<textarea>와</textarea>태그 사에이 있는 글을 기본 텍스트로 화면 표시
-속성(name, rows, cols, readonly, onfocus, onblur, onselect)