Home
Tutorials
Microsoft Technologies Tutorials
Java Programming Tutorials
Web Designing Tutorials
Script Programming Tutorials
Database Programming Tutorials
Mobile Technologies Tutorials
Other Programming Tutorials
Examples
Articles
Tools
News
Change Font Awesome Icons Color Example
Keywords : Change the style of font awesome icons with example,Font awesome change the size of icons with example,Font awesome icons with different colors example
Example
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> <title>Change Font Size Color of Icons with Example</title> </head> <body> <i class="fa fa-desktop"></i> <i class="fa fa-desktop" style="font-size:30px;"></i> <i class="fa fa-desktop" style="font-size:50px;color:blue"></i> </body> </html>
Click Here to See Result
Result
Previous
Next