HTML 4.01을 정리한다.


HTML 문법



HTML 기초

  • HTML 선언
 
 
  • Meta 태그
    • Content type과 Charset을 지정
      :
    • HTML의 default Script type 지정
      :
    • HTML의 default Style type 지정
      :
    • 5초후 자동으로 입력한 url로 화면 전환 설정
      :
 
 
 
 
  • Base 태그
    • HTML의 모든 URL의 기본 베이스 설정
      :
    • HTML의 기본 font 사이즈
      :

외부 문서 호출

  • Stylesheet 호출 및 선언
 
 
  • JavaScript 호출 및 선언
 
 
  • Iframe 호출 및 선언
 

Form 태그



Input 태그

  • file type의 Input 태그
 
  • 입출력 모드 변환 : 한글, 영문
 한글 : 
 영문 : 
 
 window.document.theForm.theField.style.imeMode = "active";
  • Input 필드 길이 고정
 
  • form Tag
   
window.document.theForm.elements[](.md), elements.length; window.document.theForm.reset(), submit(); window.document.theForm.theText.value, name, defaultvalue, type; window.document.theForm.theText.focus, blur(), select(); for (var i = 0;i < window.document.formCheckMailBox.folderName.length;i++) { window.alert(window.document.formCheckMailBox.folderName[i](i.md).value); } window.document.theForm.theText.click(); 내용 window.document.theForm.theCheckbox.checked, default, length, name, value; window.document.theForm.click(); var MailQuota = ; if (MailQuota == 0) { window.document.UpdateUserForm.mailQuotaType[0](0.md).click(); } else if (MailQuota < 0) { window.document.UpdateUserForm.mailQuotaType[1](1.md).click(); }

플래시 삽입

 
     
     
     
     
      
 

Event 처리



참고 문헌


분류: 기술_자료실 HTML5

최종 수정일: 2022-10-24 19:17:28

이전글 :
다음글 :
상단 menu
arrow_back_ios
arrow_forward_ios