JAVA를 JAVA라

[HTML] input type, select 본문

HTML/맛보기

[HTML] input type, select

샛별KIM 2021. 6. 15. 17:25

input type

<body>
	<input type="text"> text <br>
	<input type="password"> password <br>
	<input type="number"> number <br>
	<input type="email"> email <br>
	<input type="file"> file <br>
	<input type="date"> date <br>
	<input type="range" max="10" min="1" value="5"> range <br>
	<input type="submit"> submit <br>
	<input type="reset"> reset <br>
	<input type="time"> time <br>
	<input type="month"> month <br>
	<input type="color"> color <br>
	<input type="button" value="버튼"> button <br>
	<button>버튼</button>
</body>

select type

<select>
	<option>사과</option>
	<option>오렌지</option>
	<option>포도</option>
	<option>배</option>
	<option>오이</option>
</select>

'HTML > 맛보기' 카테고리의 다른 글

[JAVA & HTML] 21.06.25  (0) 2021.06.25
[HTML] jsp와 css  (0) 2021.06.15
[HTML] jsp의 리스트(list)  (0) 2021.06.15
[HTML] 표 만들기, table  (0) 2021.06.07
[HTML] 기타 태그  (0) 2021.06.07
Comments