This file contains hidden or 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
| <input type="tel"> | |
| (<input type=tel size=3>) <input type=tel size=3> - | |
| <input type=tel size=4> | |
This file contains hidden or 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
| <input type="email"> | |
| <input type="email" multiple> | |
This file contains hidden or 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
| <input type=file multiple> | |
| <input type=email multiple> | |
| <input type=range min=0 max=10 value="2,4" multiple> | |
This file contains hidden or 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
| <input type=file accept="image/*"> | |
This file contains hidden or 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
| <input type="text" name="foo" dirname="foo.dir"> | |
| <input type="submit"> | |
This file contains hidden or 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
| <input type="text" name="zip" inputmode="numeric"> | |
| <input type="text" x-inputmode="numeric"> | |
This file contains hidden or 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
| <input type="text" form="form_id"> | |
| <form id="form_id"> | |
| <input type="submit"> | |
| </form> | |
This file contains hidden or 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
| <input type="checkbox" checked name="foo" value="bar"> | |
| <input type="checkoxb" name="baz" value="zap"> | |
| <input type="radio" checked name="bip" value="true"> | |
| <input type="radio" checked name="bip" value="false"> | |
This file contains hidden or 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
| <input type="image" src="https://media.giphy.com/media/3ohzdIuqJoo8QdKlnW/giphy.gif" | |
| height="100" width="100" | |
| alt="click me"> | |
This file contains hidden or 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
| <input type="text" name="foo"> | |
| <input type="text" name="bar"> | |
| <input type="submit" name="submit" value="Test me"> | |
| <ol> | |
| <li><input type="radio" name="rbtn" value="1"> 1st Choice</li> | |
| <li><input type="radio" name="rbtn" value="2"> 2nd Choice</li> | |
| <li><input type="radio" name="rbtn" value="3"> 3rd Choice </li> | |
| </ol> |