반응형
참고) html form 태그
https://developer.mozilla.org/en-US/docs/Web/HTML/Element#forms
HTML elements reference - HTML: HyperText Markup Language | MDN
This page lists all the HTML elements, which are created using tags.
developer.mozilla.org
<!DOCTYPE html>
<html lang="kr">
<head>
<title>Home - My first website.</title>
<meta charset="utf-8" />
</head>
<body>
<form>
<input />
</form>
</body>
</html>
결과
<body>
<form>
<input type="color"/>
</form>
</body>
결과
<body>
<form>
<input type="password" />
</form>
</body>
결과
반응형
'1. HTML' 카테고리의 다른 글
html form 태그로 파일 올리기 업로드 (file accept) (0) | 2024.11.07 |
---|---|
html form 태그 이용하기 (1) | 2024.11.07 |
html 로 audio 추가하기 (& 자동재생 mp3 파일 등) (0) | 2024.11.06 |
html 글자 강조 / 제곱 표시 하는법 (0) | 2024.11.06 |
html 형광펜 효과 내기 (mark 태그) (0) | 2024.11.06 |