input 태그
<form action="/login" method="POST">
medthod 는 서버를 전송가능하고 아래와 같이 name, submit을 항상 넣어줘야한다.
<input type="email" name="id">
<input type="password" name="password">
<input type="submit" value="로그인">
<input type="reset" value="초기화">
</form>
type ="radio"
<input type="radio" name="size" value="tall" />
<input type="radio" name="size" value="grande" />
<input type="radio" name="size" value="venti" />
label
<label><input type="checkbox" />동의하십니까?</label>
textarea
<textarea rows = "6"></textarea>
fieldset
Emmet 사용해라!!
<div class="hello"><div>
->이렇게 완성된다.
또는 ul>li{number}*5 하고 텝키를 누르면
<ul>
<li>number</li>
<li>number</li>
<li>number</li>
<li>number</li>
<li>number</li>
</ul>
->자동완성된다.