CodeLab
Tutorials For Everyone
Run
Learn CSS
<!Doctype HTML> <html> <head> <title>CSS lists - An Icon as List Item Marker Example</title> <script src="https://kit.fontawesome.com/0028463084.js" crossorigin="anonymous"></script> <style> ul { list-style: none; } ul li:before{ font-family: "Font Awesome 5 Free"; content: "\f0eb"; color: #3949ab; margin-right: 15px; } </style> </head> <body> <h2>CSS lists - An Icon as List Item Marker Example</h2> <hr> Top 5 Richest Cites in the world:<br> <ul> <li>California</li> <li>Toronto</li> <li>Paris</li> <li>London</li> <li>San Francisco</li> </ul> </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