JSFiddle - React, Tailwind, and code Playground
by twong17
HTML
<form action ="output.php"
method = "GET">
Last Name: <br>
<input type = "text" name =
"lname" placeholder = "Last Name" required>
<br>
<input type = "password" name = "password">
<br>
<input type = "radio" name = "gender" value
="1"> Male
<br>
<input type = "radio"
name = "gender" value = "2"> Female
<br>
<input type = "checkbox" name = "married"
value = "married-value"> Married
<br>
<textarea rows = "2"
cols = "10" name = "comment">
</textarea>
<br>
<input type = "submit"
value = "do not submit">
</form>