Created
December 23, 2014 20:33
-
-
Save jesseangell/f79d738f2420631defc6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Credit Card Form</title> | |
</head> | |
<body> | |
<form> | |
<fieldset> | |
<label for="ccName">Name on card</label> | |
<input id="ccName" type="text"> | |
<label for="cc_number">Credit Card Number</label> | |
<input id="cc_number" type="text" > | |
<label for="cardExpirationMonth">Expiration Month</label> | |
<input id="cardExpirationMonth" type="text"> | |
<label for="cardExpirationYear">Expiration Year</label> | |
<input id="cardExpirationYear" type="text"> | |
<input type="submit" value="Charge"> | |
</fieldset> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment