File tree Expand file tree Collapse file tree 1 file changed +23
-33
lines changed Expand file tree Collapse file tree 1 file changed +23
-33
lines changed Original file line number Diff line number Diff line change 1-
2-
31<!DOCTYPE html>
4- < html >
2+ < html lang =" en " >
53< head >
6- < title > google</ title >
4+ < meta charset ="UTF-8 ">
5+ < title > Default Form Values</ title >
76</ head >
87< body >
9- < body >
10- < form action ="https:\\google.com " method ="GET ">
11- < label for ="first_name "> First Name : </ label >
12- < input type ="text " placeholder ="First Name " value ="first "/>
13- < br >
14- < br >
15- < label for ="last_name "> Last Name : </ label >
16- < input type ="text " placeholder ="Last Name " value ="last "/>
17- < br >
18- < br >
19- < label for ="DOB "> DOB : </ label >
20- < input type ="text " placeholder ="Date of birth " value ="01/01/2999 "/>
21- < br >
22- < br >
23- < div >
24- < label for ="Address "> Address : </ label >
25-
26- < input type ="text " name ="address_details " placeholder ="Enter your address here " value ="mumbai "> </ textarea >
27- </ div >
28- < br >
29- < br >
30- < div >
31- < label for ="Gender "> Gender:</ label >
32- < input type ='radio ' name ='gender ' ng-model ='genderValue ' value ='male ' ng-checked ='genderValue === male 'checked /> Male
33- < input type ='radio ' name ='gender ' ng-model ='genderValue ' value ='female ' ng-checked ='genderValue === female '/> Female
34- </ div >
35- < br >
36- < button name ="submit "> Submit</ button >
37- </ form >
8+
9+ < form >
10+
11+ < input type ="text " value ="John "> < br >
12+ < input type ="password " value ="password123 "> < br >
13+ < input type ="number " value ="10 "> < br >
14+ < input type ="email " value ="john@example.com "> < br >
15+
16+ < input type ="checkbox " checked > Checkbox< br >
17+ < input type ="radio " name ="g " checked > Option< br >
18+
19+ < select >
20+ < option selected > Default Option</ option >
21+ < option > Another Option</ option >
22+ </ select > < br >
23+
24+ < textarea > Default text</ textarea >
25+
26+ </ form >
27+
3828</ body >
3929</ html >
You can’t perform that action at this time.
0 commit comments