form 기본

박부현·2021년 5월 19일
0

html

목록 보기
10/16

form

  • 사용자가 입력한 정보를 서버로 전송할 때 사용
<html>
<body>
<p>ID : <input type="text"></p>
<p>P.W : <input type="password"></p>
<p><input type="submit"></p>
</body>
</html>

->

<html>
<body>
<form action="http://abfdabadadfb.ab.adfb">
  <p>ID : <input type="text"></p>
  <p>P.W : <input type="password"></p>
  <p><input type="submit"></p>
</form>
</body>
</html>

태그

  • input type=""
  • value
  • textarea
  • textarea cols="n" rows= "n"

##dropdown list

색상

붉은색 검은색 파란색

색상2(다중선택)

붉은색 검은색 파란색

0개의 댓글