JSP - StudyHTML - test.html

모쿠모쿠·2022년 6월 3일

JSP

목록 보기
1/151
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
  <h1>test.html</h1>
  <!-- 이 곳은 HTML 주석으로 HTML 태그가 적용(실행)되지 않는 부분입니다. -->
  <!-- <form> 태그는 사용자로부터 입력하는 데이터를 묶어주는 태그입니다. -->
  <!-- <form action=""> -->
  
  <input type="text"><br>
  
  <form action="test_result.html">
    <input type="text"><br>
    <input type="text" placeholder="이름을 입력하세요"><br>
    
    <input type="text" value="1"><br>
    <input type="number" value="1"><br>
    <input type="text" value="홍길동" readonly="readonly"><br>
    <hr>
    
    취미 : <input type="checkbox" name="programming"><label for="programming">프로그래밍</label>
    <input type="checkbox">등산
    <input type="checkbox" checked="checked">영화감상
    <br>
    
    성별 : <input type="radio" name="gender" value="male"><input type="radio" name="gender" value="female" checked="checked"><hr>
    
    날짜 : <input type="date">
    <input type="button" value="확인">
    <hr>
    
    직업 : 
    <select>
      <option>직업을 선택하세요</option>
      <option selected="selected">개발자</option>
      <option disabled="selected">건물주</option>
      <option>아르바이트</option>
    </select>
    <hr>
    
    <!-- 자기소개 : <textarea></textarea> -->
    자기소개 : <textarea rows="8" cols="20"></textarea>
    <hr>
    
    <input type="submit" value="가입">
    <input type="reset" value="초기화">
  </form>
</body>
</html>
Insert title here

test.html








취미 : 프로그래밍 등산 영화감상
성별 :
날짜 :
직업 : 직업을 선택하세요 개발자 건물주 아르바이트
자기소개 :
profile
Hello, Velog!

0개의 댓글