HTML5 form features
Input types
autofocus attribute
<input type="text" name="text" autofocus>
placeholder attribute
<input type="text" name="text" placeholder="sample text">
required attribute
<input type="text" name="email" required>
onforminput event handler
<textarea rows="3" cols="60"
onforminput="document.getElementById('counter').firstChild.nodeValue
= this.value.length"></textarea>
<span id='counter'>0</span>

안녕하세요,
웹 접근성을 고려한 콘텐츠 제작 기법 2.0
실전 HTML5 가이드
실전 웹표준 가이드







