“Formulir HTML” Kode Jawaban

Formulir 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

Formulir 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

Formulir 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

Formulir 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

Formulir HTML

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

Formulir HTML

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

Formulir 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

Jawaban yang mirip dengan “Formulir HTML”

Pertanyaan yang mirip dengan “Formulir HTML”

Lebih banyak jawaban terkait untuk “Formulir HTML” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya