First, image browsing upload
1, still "table" label contains,
2, "Input" contains "type" equals "file".
<table border= "1" align= "center" > <tr> <td> image upload </td> <td><input type = "File" </td> </tr> <tr> </table>
Second, single box--click on the text can not be selected
1, the elements are the same, the only difference is "value" is equal to the male/female
2. Frame structure <input type= "Radio" name= "Sex" value= "male" >
<input type= "Radio" name= "Sex" value= "women" >
Three, single box--click the text to select
1. Basic structure <label for= "man" > Male </label> <!--there is a start and end
2. Add "id" value in input to "for" value "corresponding"
<table border= "1" align= "center" width= "303" > <tr> <td> <label for= "man" > Men < /label> <input type= "Radio" name= "Sex" value= "male" id= "man" >
<label for= "Woman" > Women </label> <input type= "Radio" name= "Sex" value= "female" id= "Woman" > </td > </tr> </table>
Form-Image View upload-radio box (ii)