23. HTML – HTML5의 새로운 제출 양식
* 이 블로그는 리빙코딩의 HTML5 Input Form 강의와 관련된 블로그입니다. <!DOCTYPE html> <head> <meta charset=”utf-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>23. HTML5의 입력양식</title> </head> <body> <h1>23. HTML5의 입력양식</h1> <form actio=”서버주소”> <p><input type=”number” min=”10″ max=”17″></p> <p><input type=”date” name=”datev”></p> <p><input type=”month” name=”monthv”></p> <p><input type=”week” name=”weekv”></p> <p><input type=”time” name=”timev”></p> <p><input type=”email” name=”emailv”></p> <p><input type=”search” name=”searchv”></p> <p><input type=”tel” name=”telv”></p> <p><input … Read more