관리 메뉴

드럼치는 프로그래머

[HTML] <fieldset> <legend> 본문

★─Programing/☆─WebProgram

[HTML] <fieldset> <legend>

드럼치는한동이 2016. 5. 18. 09:40

<fieldset> : <form> 태그의 영역을 박스로 나타냄
<legend> : <fieldset> 태그의 제목을 나타냄

 

 

<html>
 <body>
    <form>
     <fieldset>
       <legend>로그인</legend>
        Login Id : <input type="text" name="loginid" /><br />
        Password : <input type="password" name="password" /><br />
        <input type="submit" value="Login" /> <input type="reset" value="Reset" />
     </fieldset>
    </form>
  </body>
</html>

 

[출처] <fieldset> <legend>|작성자 모니카

Comments