Skip to content

Instantly share code, notes, and snippets.

@Parassharmaa
Last active September 26, 2016 13:51
Show Gist options
  • Save Parassharmaa/ab8aae25dd35bed78d95ae5ae668937a to your computer and use it in GitHub Desktop.
Save Parassharmaa/ab8aae25dd35bed78d95ae5ae668937a to your computer and use it in GitHub Desktop.
Forms Tags
<html>
<head>
<title>Forms</title>
</head>
<body>
<form type="" action="">
<input type = "text" placeholder="First Name" name="firstname" required><br>
<input type = "text" placeholder="Middle Name" name="middlename" required><br>
<input type = "text" placeholder="last Name" name="lastname" required><br>
<input type="password" placeholder="Password"><br>
<input type="email" required placeholder="Email"><br>
<input type="submit"><br>
<label><input type="checkbox">Keep Me loggedin</label>
<label>
<p>Gender</p>
male <input type="radio" name="gender">
female <input type ="radio" name="gender">
</label>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment