Skip to content

Instantly share code, notes, and snippets.

@GreyGnome
Created May 23, 2019 13:07
Show Gist options
  • Save GreyGnome/089a13d8a99e6b31cfa433583ff9d471 to your computer and use it in GitHub Desktop.
Save GreyGnome/089a13d8a99e6b31cfa433583ff9d471 to your computer and use it in GitHub Desktop.
Test of Button and Submit inputs in html.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test Button/Submit</title>
</head>
<body>
<h1>Test Button/Submit</h1>
<form action="" method="">
<!-- <form action="http://wikipedia.org" method="get"> -->
<input name="u" type="text" placeholder="username">
<button>blah</button>
<input type="submit">
</form>
Hit the Button or Submit input, watch what happens.
</body>
</html>
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment