Created
September 18, 2014 17:02
-
-
Save ethicalhack3r/96a836e853e27526d7bb to your computer and use it in GitHub Desktop.
Entering version numbers in HTML form
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> | |
<body> | |
<input type="text" name="version1" value="1.0"> | |
<select> | |
<option value="<"><</option> | |
<option value=">">></option> | |
<option value="=">=</option> | |
<option value="<="><=</option> | |
<option value=">=">>=</option> | |
</select> | |
<input type="text" name="version2" value="2.0"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment