<form>
action
method
<label>
<select>
<textarea>
<button>
<form method="post" action="https://oim.108122.xyz/form2"> <input type="text" name="name" placeholder="Enter your full name here..." /> <button type="submit">Send</button> </form>
form
<form action="https://www.google.com">
<form action="/process-form">
<form action="mailto:email-address">
GET
POST
"POST"
<input>
<input type="text" />
<input type="password" />
<input type="radio" />
<input type="checkbox" />
<input type="file" />
<input type="hidden" />
type
name
maxlength
placeholder
value
checked
"text"
"password"
<form> <label for="username">Username:</label> <input type="text" id="username" name="username" maxlength="100" placeholder="Username" /> </form>
type="password"
"radio"
<form> <div> Gender: <label>Male <input type="radio" name="gender" value="male" /> </label> <label>Female <input type="radio" name="gender" value="female" /> </label> </div> </form>
"checkbox"
<div>What product(s) do you own?</div> <div> <input type="checkbox" id="smartphone" name="products" value="smartphone" /> <label for="smartphone">Smartphone</label> </div> <div> <input type="checkbox" id="desktop" name="products" value="desktop"/> <label for="desktop">Desktop computer</label> </div> <div> <input type="checkbox" id="laptop" name="products" value="laptop" checked /> <label for="laptop">Laptop computer</label> </div>
"submit"
"reset"
<input type="submit" value="Submit" /> <input type="reset" value="Reset" />
ex09.html
action="https://oim.108122.xyz/form2"
<option>
<div> <div> <label for="state-select">Which state do you live in?</label> </div> <div> <select name="state" id="state-select"> <option value="">-- Please select your state --</option> <option value="ME">Maine</option> <option value="MA">Massachusetts</option> <option value="NH">New Hampshire</option> </select> </div> </div>
<div> <div> <label for="comments">Leave a Reply:</label> </div> <div> <textarea id="comments" name="comments" rows="5" cols="25" placeholder="Enter your comment here..." ></textarea> </div> </div>
<button type="submit"> SUBMIT <img src="images/mailbox.png" height="30" alt="submit button" /> </button>
sitemap.html
global styles