728x90
이전 활동에서 배운 input 태그 외에 더 다양한 input 태그와 select box 등에 대해 배워보았다.(select box도 input 태그인가?)
<코드>
<html>
<head></head>
<body>
<form name="input" action "getfeedback.jsp" method="get">
<textarea name="feedback" row="5" cols="50"></textarea>
<form>
<fieldset>
<legend>인적사항 입력</legend>
이름: <input type="text"><br>
전화번호: <input type="text"><br>
주소: <input type="text"><br>
</fieldset>
<form action="">
<select name="cars">
<option value="bmw">BMW</option>
<option value="기아">기아</option>
<option value="현대">현대</option>
<option value="쌍용">쌍용</option>
<p></p>
</body>
</html>
<실행 결과>
<코드>
<html>
<head>
</head>
<body>
date:<input type="date"><br>
datetime:<input type="datetime"><br>
month:<input type="month"><br>
time:<input type="time"><br>
week:<input type="week"><br>
color:<input type="color"><br>
email:<input type="email"><br>
tel:<input type="tel"><br>
search:<input type="search"><br>
range:<input type="range"><br>
number:<input type="number"><br>
url:<input type="url"><br>
</body>
</html>
<실행 결과>
728x90
'Experience > 스터디 활동 기록' 카테고리의 다른 글
[코딩 멘토링] 웹 프로그래밍 css + 소감 - 2020.11.25.수 (0) | 2021.12.29 |
---|---|
[코딩 멘토링] html input 태그 - 2020.11.16.월 (0) | 2021.12.29 |
[코딩 멘토링] html 테이블 태그 - 2020.11.09.월 (1) | 2021.12.29 |
[코딩 멘토링] html 텍스트 강조, 목록, 이미지, 링크 - 2020.11.02.월 (0) | 2021.12.29 |
[코딩 멘토링] 웹 프로그래밍 기본 태그(html) - 2020.10.16.금 (0) | 2021.12.29 |