1. HTML

html form 태그 안의 <input>

도피디 2024. 11. 6. 01:15
반응형

참고) 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>

 

 

결과

반응형