Search Results
Font Awesome Utensils Icon (Dining, Cuisine, Eating Utensils)
Fontawesome Version 5.X
utensils
<i class='fas fa-utensils'></i>
utensils
<i class='fas fa-utensils' style='color: white'></i>
utensils
<i class='fas fa-utensils' style='color: red'></i>
utensils
<i class='fas fa-utensils' style='color: blue'></i>
utensils
<i class='fas fa-utensils' style='color: #f3da35'></i>
Fontawesome Version 6.X
utensils
Web
<i class='fa-solid fa-utensils'></i>
React
<FontAwesomeIcon icon="fa-solid fa-utensils" />
Vue
<font-awesome-icon icon="fa-solid fa-utensils" />
utensils
Web
<i class='fa-solid fa-utensils' style='color: white'></i>
React
<FontAwesomeIcon icon="fa-solid fa-utensils" style={{color: 'white'}} />
Vue
<font-awesome-icon icon="fa-solid fa-utensils" :style="{color: 'white'}" />
utensils
Web
<i class='fa-solid fa-utensils' style='color: red'></i>
React
<FontAwesomeIcon icon="fa-solid fa-utensils" style={{color: 'red'}} />
Vue
<font-awesome-icon icon="fa-solid fa-utensils" :style="{color: 'red'}" />
utensils
Web
<i class='fa-solid fa-utensils' style='color: blue'></i>
React
<FontAwesomeIcon icon="fa-solid fa-utensils" style={{color: 'blue'}} />
Vue
<font-awesome-icon icon="fa-solid fa-utensils" :style="{color: 'blue'}" />
utensils
Web
<i class='fa-solid fa-utensils' style='color: #f3da35'></i>
React
<FontAwesomeIcon icon="fa-solid fa-utensils" style={{color: '#f3da35'}} />
Vue
<font-awesome-icon icon="fa-solid fa-utensils" :style="{color: '#f3da35'}" />
How to add Font Awesome utensils Icon ?
Font Awesome Icon fas fa utensils 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.
HTML Code
Get complete html code for icon utensils
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
</head>
<body>
<i class='fas fa-utensils'></i>
</body>
</html>
Tags
dining,cuisine,restaurants,food ordering,Cookware ,Dining Utensils,Cutlery,Silverware, Tableware, Kitchenware, Culinary , Flatware
Change Font Awesome Icon Utensils 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='fas fa-utensils blue-color'></i>
<i class='fas fa-utensils green-color'></i>
<i class='fas fa-utensils teal-color'></i>
<i class='fas fa-utensils yellow-color'></i>
<i class='fas fa-utensils red-color'></i>
Output of the above example will be as below-
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
Utensils Icon Font Awesome - FAQs
⭐What is the Font Awesome Utensils Icon code?Icon Code is - fas fa-utensils.
⭐ What does the fas fa-utensils Icon mean?fas fa-utensils is the Icon code of Font Awesome Utensils.
⭐ Can we add fas fa-utensils Icon in different sizes?Yes, you can Icon of fas fa-utensils in various pixels.
⭐ How to add a Blue color Font Awesome Utensils Icon?Add the blue color Utensils icon of the font awesome by using code: fas fa-utensils style='color: blue;'.
⭐ How to make white color icon of a Font Awesome Utensils?To change the Utensils icon to white color use code: fas fa-utensils style='color: white;'.
Advertisements
Advertisements