“HTML форма” Ответ

HTML форма

<form action="/action.php">
  <label for="fname">First name:</label><br>
  <input type="text" id="fname" value="Mike"><br><br>
  <label for="lname">Last name:</label><br>
  <input type="text" id="lname" value="Walker"><br><br>
  <input type="submit" value="Submit">
</form>
Nextline Software

HTML форма

<form action="/my-handling-form-page" method="post">
 <ul>
  <li>
    <label for="name">Name:</label>
    <input type="text" id="name" name="user_name">
  </li>
  <li>
    <label for="mail">E-mail:</label>
    <input type="email" id="mail" name="user_email">
  </li>
  <li>
    <label for="msg">Message:</label>
    <textarea id="msg" name="user_message"></textarea>
  </li>
 </ul>
</form>
abdu

HTML форма

<!-- Form which will send a GET request to the current URL -->
<form method="get">
  <label>Name:
    <input name="submitted-name" autocomplete="name">
  </label>
  <button>Save</button>
</form>

<!-- Form which will send a POST request to the current URL -->
<form method="post">
  <label>Name:
    <input name="submitted-name" autocomplete="name">
  </label>
  <button>Save</button>
</form>

<!-- Form with fieldset, legend, and label -->
<form method="post">
  <fieldset>
    <legend>Title</legend>
    <label><input type="radio" name="radio"> Select me</label>
  </fieldset>
</form>
Crinfarr

HTML форма

 <!-- Contact Form with name, email, textarea, submit button -->
        <form>
            <h2>Contact Us</h2>
            <input type="text" placeholder="Your Name" target="name">
            <input type="text" placeholder="Email Address" target="email">
            <textarea cols="10" rows="6" placeholder="Type Your Message" target="message"></textarea>
            <input type="submit" target="send">
        </form>
Ciprian Vlad

HTML форма

Check this:
https://codepen.io/DevLorenzo/pen/wvzNPKz
DevLorenzo

HTML форма

<form> Form Elements... </form>
Clean Chamois

HTML форма

<body>
  <form method='post' name="google-sheet">
 <div id='container'>  
 <div class='signature'>
    <p target='_blank' href='https://www.codelikedude.com/'></p>
    </div>
  <div class='layout'>
    <input type="Textbox" placeholder=" Name..."></input>
    <br>
   <input type="email" placeholder=" Email.."></input>
    <br>
    <br>
      <button type="submit" id='submitted' class='submit-button'>submit</button>
    </div>
   
    <div class='signature'>
    <p>codelikedude</p>
    </div>
    </div>
</form>
</body>
Amused Alligator

Ответы похожие на “HTML форма”

Вопросы похожие на “HTML форма”

Больше похожих ответов на “HTML форма” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования