1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>폼 입력 그룹으로 묶기</title></head>
<body>
<h3>회원 정보를 입력해주세요.</h3>
<hr>
<form>
    <fieldset> // <fieldset>태그로 폼 요소들을 그룹으로 묶을 수 있다.
        <legend>회원정보</legend> // 그룹의 제목은 <legend>태그로 표현할 수 있다.
        이메일 : <input type="email"><br>
        홈페이지 : <input type="url"><br>
        전화번호 : <input type="tel">
    </fieldset>
    <small>질문 : Tel. 010-111-1111</small>
</form>
</body>
</html>
 
cs



 

Posted by 너래쟁이
: