input 태그
text, password, textarea
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<hr>
<table>
<tr>
<td>
<input type="text" name="user_name" size="20" placeholder="이름을 입력하세요" maxlength="5">
</td>
</tr>
<tr>
<td>
<input type="password" name="user_age" size="20" placeholder="나이를 입력하세요" maxlength="5">
</td>
</tr>
<tr>
<td>
<textarea name="user_memo" cols="20" rows="5" placeholder="메모(선택)"></textarea>
</td>
</tr>
</table>
<hr>
</body>
</html>
submit button
reset button
<!DOCTYPE html>
<html>
<head>
<title>submit button</title>
</head>
<body>
<form action='#'>
아무글자나 입력: <input type='text' placeholder='텍스트 입력.'>
<input type="submit" value="제출">
<input type="reset" value="초기화">
</form>
</body>
</html>
728x90
'WORKS > Html CSS' 카테고리의 다른 글
[HTML] checkbox 체크박스, radio 라디오, dropdown list 드롭다운리스트 (0) | 2022.02.24 |
---|---|
[HTML] 이미지 하이퍼링크 / a 태그 (0) | 2022.02.24 |
[HTML] 문서에 줄긋기 hr 태그 / p 태그 문단 나누기 / pre 태그 내가 쓴 그대로 (0) | 2022.02.24 |
[HTML] html 태그 01: 들여쓰기: 공백문자 / blockquote 자동 들여쓰기 (0) | 2022.02.13 |
댓글