
- Web Icons Tutorial
- Web Icons - Home
- Web Icons - Introduction
- Font Awesome
- Font Awesome Icons
- Font Awesome - Web Icons
- Font Awesome - Hand Icons
- Font Awesome - Transportation Icons
- Font Awesome - Gender Icons
- Font Awesome - File Type Icons
- Font Awesome - Spinner Icons
- Font Awesome - Form Control Icons
- Font Awesome - Payment Icons
- Font Awesome - Chart Icons
- Font Awesome - Currency Icons
- Font Awesome - Text Editor Icons
- Font Awesome - Directional Icons
- Font Awesome - Video Player Icons
- Font Awesome - Brand Icons
- Font Awesome - Medical Icons
- Material Icons
- Material Icons
- Material - Action Icons
- Material - Alert Icons
- Material - AV Icons
- Material - Communication Icons
- Material - Content Icons
- Material - Device Icons
- Material - Editor Icons
- Material - File Icons
- Material - Hardware Icons
- Material - Image Icons
- Material - Maps Icons
- Material - Navigation Icons
- Material - Notification Icons
- Material - Social Icons
- Material - Toggle Icons
- Bootstrap Glyphicons
- Bootstrap Glyphicons
- Bootstrap - Components
- Web Icons Useful Resources
- Web Icons - Quick Guide
- Web Icons - Useful Resources
- Web Icons - Discussion
Font Awesome - Transportation Icons
This chapter explains the usage of Font Awesome Transportation icons. Assume that custom is the CSS class name where we defined the size and color, as shown in the example given below.
<html> <head> <link rel = "stylesheet" href = "http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"> <style> i.custom {font-size: 2em; color: gray;} </style> </head> <body> <i class = "fa fa-adjust custom"></i> </body> </html>
The following table shows the usage and the results of Font Awesome Transportation icons. Replace the < body > tag of the above program with the code given in the table to get the respective outputs −
Usage | Result |
---|---|
<i class="fa fa-ambulance custom"></i> | |
<i class="fa fa-automobile custom"></i> | |
<i class="fa fa-bicycle custom"></i> | |
<i class="fa fa-bus custom"></i> | |
<i class="fa fa-cab custom"></i> | |
<i class="fa fa-car custom"></i> | |
<i class="fa fa-fighter-jet custom"></i> | |
<i class="fa fa-motorcycle custom"></i> | |
<i class="fa fa-plane custom"></i> | |
<i class="fa fa-rocket custom"></i> | |
<i class="fa fa-ship custom"></i> | |
<i class="fa fa-space-shuttle custom"></i> | |
<i class="fa fa-subway custom"></i> | |
<i class="fa fa-taxi custom"></i> | |
<i class="fa fa-train custom"></i> | |
<i class="fa fa-truck custom"></i> | |
<i class="fa fa-wheelchair custom"></i> |
Advertisements