CodeLab
Tutorials For Everyone
Run
Learn HTML
<!DOCTYPE html> <html> <head> <title>HTML Form Button Control Example</title> </head> <body> <h3>HTML Form Button Control Example</h3> Please type in your own values in the below text fields. <form method='get' action='/form-submit/'> <div><label for='full-name'>Your Name</label></div> <div><input type="text" name="full-name" value="John Doe" /></div> <div><label for='email-address'>Your Email Address</label></div> <div><input type="email" name="email-address" value="johndoe@example.com" /></div> <div><input type="submit" value="Submit" /> <input type="submit" value="Reset" /></div> </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