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 Bootstrap Glyphicon Color Example
Keywords : Change color of bootstrap glyphicon example, Change size of bootstrap glyphicon example, Bootstrap change the style of glyphicon with example
Example
<!DOCTYPE html> <html> <head> <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> <title>Change Bootstrap Glyphicon Color Example</title> </head> <body> <i class="glyphicon glyphicon-camera"></i> <i class="glyphicon glyphicon-camera" style="font-size:40px;"></i> <i class="glyphicon glyphicon-camera" style="font-size:50px;color:blue"></i> </body> </html>
Click Here to See Result
Result
Previous
Next