[Web] HTML form input tag

Web 2018. 3. 27. 23:04

https://www.w3schools.com/html/html_forms.asp


<form action="/action_page.php">
  <fieldset>
    <legend>Personal information:</legend>
    First name:<br>
    <input type="text" name="firstname" value="Mickey"><br>
    Last name:<br>
    <input type="text" name="lastname" value="Mouse"><br><br>
    <input type="submit" value="Submit">
  </fieldset>
</form>



'Web' 카테고리의 다른 글

[Web] jQuery ajax  (0) 2018.03.27
[Web] jQuery val() vs text()  (0) 2018.03.27
[Web] Javascript CDN  (0) 2018.03.27
[flask] static page vs dynamic page, with nginx  (0) 2018.03.27
[nginx] debugging  (0) 2018.03.27

WRITTEN BY
hojongs
블로그 옮겼습니다 https://hojongs.github.io/