HTML 11 HTML5

<h1>HTML5</h1> <form method=”post” action=”ex20.jsp”> <input type=”submit” value=”보내기”> <hr> <label for = “txt1″>이름</label><input type=”text” id=”txt1″> <hr> <input type=”text” value=”이름을 입력하세요.” onclick= “this.value=”””> <input type=”text” value=”암호를 입력하세요.” onclick= “this.value=”””> <hr> <input type=”text” placeholder=”이름을 입력하세요.”> <input type=”password” placeholder=”암호를 입력하세요.”> <hr> <input type=”text” placeholder=”아이디를 입력하세요” required>**필수입력 입력. 필수 > 빈칸으로 제출하면 경고 메시지가 나타납니다. 이메일, URL 이메일 : <input … Read more