티스토리 뷰
주로 봐야할 속성으로는
placeholder / autocomplete / autofocus / required 경우이고. 직접 만들어서 값을 안넣어본다던지 하면
각 컨트롤들이 어떻게 작동하는지 확인 가능
웹표준을 지키기 위해서 label for를 이용해서 input 타입 객체와 연결을 꼭 시켜주자.
나중에 접근성에서 문제를 발생시키지 않기위해서.
placeholder / autocomplete / autofocus / required 경우이고. 직접 만들어서 값을 안넣어본다던지 하면
각 컨트롤들이 어떻게 작동하는지 확인 가능
웹표준을 지키기 위해서 label for를 이용해서 input 타입 객체와 연결을 꼭 시켜주자.
나중에 접근성에서 문제를 발생시키지 않기위해서.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>무제 문서</title>
<style>
ul li{
list-style:none;
}
ul li label
{
font-family:맑은 고딕;
}
</style>
</head>
<body>
<form>
<fieldset>
<legend>로그인 정보</legend>
<ul>
<li>
<label for="userid">아이디</label>
<input id="userid" name="userid" type="text" required autofocus>
</li>
<li>
<label for="pwd1">비밀번호</label>
<input id="pwd1" name="pwd1" type="password" required>
</li>
<li>
<label for="pwd2">비밀번호 확인</label>
<input id="pwd2" name="pwd2" type="password" required>
</li>
<li>
<label for="level">회원 등급</label>
<input id="level" name="level" type="text" readonly value="준회원">
</li>
</ul>
</fieldset>
<fieldset>
<legend>개인정보</legend>
<ul>
<li>
<label for="fullname">이름</label>
<input id="fullname" name="fuulname" type="text" placeholder="5자미만 공백없이" required>
</li>
<li>
<label for="email">메일주소</label>
<input id="email" name="email" type="email" placeholder="id@domain.com" required>
</li>
<li>
<label pwd="tel">연락처</label>
<input id="tel" type="tel" name="tel" autocomplete="off">
</li>
</ul>
</fieldset>
<fieldset>
<legend>숙련도(상,중,하)</legend>
<ul>
<li>
<input id="skill" name="skill" type="range" min="1" max="3" step="1">
</li>
</ul>
</fieldset>
<fieldset>
<button type="submit"> 제출 </button>
</fieldset>
</form>
</body>
</html>
'프로그래밍 > HTML5' 카테고리의 다른 글
Drag & Drop (드래그 앤 드롭)(2) (0) | 2012.03.22 |
---|---|
Drag & Drop (드래그 앤 드롭)(1) (0) | 2012.03.22 |
스토리지 (Storage) sessionStorage, localStorage (0) | 2012.03.22 |
HTML5 Canvas를 이용한 간단한 그림판 만들기. (0) | 2012.03.21 |
HTML5 태그를 익스플로러에서 인식시키기 위한 방법 (0) | 2012.03.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- JS
- ASP.NET
- rowspan
- json
- JavaScript
- workbook
- 셀렉터
- MSSQL
- jQuery
- Style
- Mobile
- SVG
- jQuery Mobile
- Excel
- CSS
- Chart
- jquery chart
- WebApi
- drag&drop
- WCF
- IE
- grid
- 자바스크립트
- 제이쿼리
- Ajax
- 저장프로시저
- css3
- html5
- radius
- 프로시저
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함