CodeLab
Tutorials For Everyone
Run
Learn CSS
<!Doctype HTML> <html> <head> <title>Internal Style Sheets</title> <style> .pie-content{ font-size: 20px; color: #999; font-family: 'Roboto', sans serif; font-weight: 500; background: #f4f4fb; margin: 20px; } </style> </head> <body> <h2>CSS Internal Style Sheets</h2> As you see we have defined our styles in the head section using CSS class selector. After that we can use that class on the same page for unlimited times. <h3>History of CSS</h3> <p class="pie-content">CSS was developed at W3C. W3C timely release the recommendations for HTML and CSS. At present there are 4 levels or reommndations of CSS. Most Latest release is CSS4.</p> </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