Skip to content

Instantly share code, notes, and snippets.

@awg01
Last active March 23, 2019 16:26
Show Gist options
  • Save awg01/8833d705cf8d1048732a0569407eceae to your computer and use it in GitHub Desktop.
Save awg01/8833d705cf8d1048732a0569407eceae to your computer and use it in GitHub Desktop.
button_html
<!-- <button> works same as <input type="button"> when its the last button-->
<html>
<head>
<title>Magical HTML</title>
</head>
<body>
<form action="https://www.google.com" method="get">
<label for="uname" Username: </label>
<input id="uname" type="text" name="uname">
<button>Submit</button>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment