쌤리

[HTML] input 요소의 type 본문

UI 구현/HTML | CSS

[HTML] input 요소의 type

saml2l 2020. 7. 23. 17:53

HTML에서 사용할 수 있는 input type :

<input type="button">
<input type="checkbox">
<input type="color">
<input type="date">
<input type="datetime-local">
<input type="email">
<input type="file">
<input type="hidden">
<input type="image">
<input type="month">
<input type="number">
<input type="password">
<input type="radio">
<input type="range">
<input type="reset">
<input type="search">
<input type="submit">
<input type="tel">
<input type="text">
<input type="time">
<input type="url">
<input type="week">

  • placeholder 를 사용하면 다음과 같이 입력 받는 곳에 텍스트를 고정 시킬 수 있다.
  •  

'UI 구현 > HTML | CSS' 카테고리의 다른 글

[HTML] video 태그 썸네일 설정  (2) 2020.09.28
강의 링크/ 포트폴리오 문서 작업  (0) 2020.09.01
[HTML] div, span  (0) 2020.06.05
[HTML] 기본 레이아웃, semantic tag  (0) 2020.06.05
[HTML] 링크 연결  (0) 2020.06.04
Comments