CodeLab
Tutorials For Everyone
Run
Learn HTML
<!DOCTYPE html> <html> <head> <title>HTML Form Radio Control Example</title> </head> <body> <h3>HTML Form Radio Control Example</h3> Please select your City from the below list provided. <form action='/form-submit/'> <input type="radio" id="new-york" name="choice-1" value="New York"> <label for="choice-1">New York</label><br> <input type="radio" id="toronto" name="choice-2" value="Toronto"> <label for="choice-2">Toronto</label><br> <input type="radio" id="sydney" name="choice-3" value="Sydney"> <label for="choice-3">Sydney</label><br> <input type="submit" id="submit" value="Submit"> </form> </body> </html>
Editor Commands
Ctrl
F
Find
Ctrl
G
Find Next
Ctrl
⇧
G
Find Previous
Ctrl
⇧
F
Find & Replace
Ctrl
]
Indent Code Right
Ctrl
[
Indent Code Left
⇧
Tab
Auto Indent Code
Ctrl
/
Line Comment
Ctrl
Alt
/
Block Comment
TutsInsider Actions
Alt
S
Run Code
Ctrl
C
Copy Editor Code
Ctrl
A
Select All Editor Code
Ctrl
S
Save/Download
Ctrl
Alt
X
Rotate
Ctrl
Alt
T
Switch Theme
Ctrl
⇧
C
Open Console
Esc
Close Console