CodeLab
Tutorials For Everyone
Run
Learn HTML
<!Doctype HTML> <html> <head> <title>HTML table border</title> <style> table, th, td{ border: 1px solid #999; } </style> </head> <body> <h2>HTML Table border</h2> <p>We can add border to table by using the css border property.</p> <table style="width: 100%;"> <tr> <th>Company</th> <th>Product</th> <th>Ranking</th> </tr> <tbody> <tr> <td>Google</td> <td>Search engine</td> <td>1</td> </tr> <tr> <td>Google</td> <td>Youtube</td> <td>2</td> </tr> <tr> <td>Facebook</td> <td>Facebook App</td> <td>3</td> </tr> <tr> <td>Amazon</td> <td>Amazon Inc</td> <td>4</td> </tr> </tbody> </table> </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