I added a radio input to possible input types (#31669)

This commit is contained in:
catrawalkar
2018-12-04 07:01:40 +05:30
committed by Christopher McCormack
parent 07b5c5c9a8
commit c61864467a

View File

@ -149,6 +149,7 @@ There are many possible ways a user can give input/s, such as:
<input type="text" /> <!-- This is for text input -->
<input type="file" /> <!-- This is for uploading files -->
<input type="checkbox" /> <!-- This is for checkboxes -->
<input type="radio" /> <!-- This is for radio buttons -->
```
**Comments**