Font Awesome Truck (Delivery, Dispatch, Order)

Font Awesome provides truck icon, that is for use for represent delivery, dispatch, order, or any other related concept. In this tutorial, we will learn how to use Font Awesome truck icon, also known as Fa Fa Truck ,Tracking, Shipping, Shipment, Transport, Deliver, Vehicle, Commerce.

Fontawesome Version 4.X

truck

<i class='fa fa-truck'></i>

truck

<i class='fa fa-truck' style='color: white'></i>

truck

<i class='fa fa-truck' style='color: red'></i>

truck

<i class='fa fa-truck' style='color: blue'></i>

truck

<i class='fa fa-truck' style='color: #f3da35'></i>
Try it Yourself


Fontawesome Version 5.X

truck

<i class='fas fa-truck'></i>

truck

<i class='fas fa-truck' style='color: white'></i>

truck

<i class='fas fa-truck' style='color: red'></i>

truck

<i class='fas fa-truck' style='color: blue'></i>

truck

<i class='fas fa-truck' style='color: #f3da35'></i>
Try it Yourself

How to add Font Awesome truck Icon ?

Font Awesome Icon fa fa truck Icon can be added to any web page simply as below. You can integrate Icon in web pages by just adding following below syntax & icon code.

Icon -
<i class='fa fa-truck'></i>
Icon Code -
fa fa-truck

HTML Code

Get complete html code for icon truck

                    
                    <!DOCTYPE html>
                    <html>
                        <head>
                        <title>Page Title</title>
                        <link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
                       </head>
                        <body>
                        <i class='fa fa-truck'></i>
                        </body>
                    </html>                    

Tags

delivery,dispatch ,tracking,order ,shipping,shipment,transport,deliver,vehicle,Commerce

Change Font Awesome Icon Truck Color

Sometimes we need icons in different color, as we suggested by adding css style we can change color. Here we have created one example to change color of icons with css classes.


    <style>
.blue-color {
color:blue;
}
.green-color {
color:green;
}
.teal-color {
color:teal;
}
.yellow-color {
color:yellow;
}
.red-color {
color:red;
}
</style>
<i class='fa fa-truck blue-color'></i> <i class='fa fa-truck green-color'></i> <i class='fa fa-truck teal-color'></i> <i class='fa fa-truck yellow-color'></i> <i class='fa fa-truck red-color'></i>

Output of the above example will be as below-


Note- Make Sure You have included the below Font Awesome file in header-
            
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>            
            
Related Icons

Advertisements



Advertisements



Looking For More Icons?