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
Bootstrap Font Awesome Icons Example
Keywords : icons, bootstrap, bootstrap icons, bootstrap icon examples, bootstrap media objects, bootstrap glyph icons, bootstrap glyphicon, bootstrap glyphicon icons, bootstrap tutorial, bootstrap examples
Example
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Font Awesome Icons Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> <link rel="Stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" /> <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script> <style> .bcontent { margin-top: 10px; } </style> </head> <body> <div class="container bcontent"> <h2>Font Awesome Icons</h2> <hr /> <i class="fa fa-desktop"></i> <i class="fa fa-diamond"></i> <i class="fa fa-key"></i> <br /> <br /> <button type="button" class="btn btn-primary"> <span class="fa fa-home"></span> Home </button> <button type="button" class="btn btn-secondary"> <span class="fa fa-search"></span> Search </button> </div> </body> </html>
Click Here to See Result
Result
Previous
Next