Skip to content

Instantly share code, notes, and snippets.

@ethicalhack3r
Created September 18, 2014 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ethicalhack3r/96a836e853e27526d7bb to your computer and use it in GitHub Desktop.
Save ethicalhack3r/96a836e853e27526d7bb to your computer and use it in GitHub Desktop.
Entering version numbers in HTML form
<!DOCTYPE html>
<html>
<body>
<input type="text" name="version1" value="1.0">
<select>
<option value="&lt;">&lt;</option>
<option value="&gt;">&gt;</option>
<option value="=">=</option>
<option value="&lt;=">&lt;=</option>
<option value="&gt;=">&gt;=</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