Skip to content

Instantly share code, notes, and snippets.

@Abhishek27064
Last active February 15, 2023 06:06
Show Gist options
  • Save Abhishek27064/9d93fb42a0415dc194a5baa7945acc34 to your computer and use it in GitHub Desktop.
Save Abhishek27064/9d93fb42a0415dc194a5baa7945acc34 to your computer and use it in GitHub Desktop.
Form tag
<!DOCTYPE html>
<html>
<head>
<title>Inspiration</title>
</head>
<body>
<form>
<label class="labelForm">name</label>
<input type="text" placeholder="name">
<br>
<label class="labelForm">age</label>
<input type="number" placeholder="age">
<br>
<label class="labelForm">Address</label>
<textarea></textarea>
<br>
<input type="submit" value="submit">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment