Search Results
Font Awesome Wave Square Icon (Zigzag Square )
Fontawesome Version 5.X
wave square
<i class='fas fa-wave-square'></i>
wave square
<i class='fas fa-wave-square' style='color: white'></i>
wave square
<i class='fas fa-wave-square' style='color: red'></i>
wave square
<i class='fas fa-wave-square' style='color: blue'></i>
wave square
<i class='fas fa-wave-square' style='color: #f3da35'></i>
Fontawesome Version 6.X
wave square
Web
<i class='fa-solid fa-wave-square'></i>
React
<FontAwesomeIcon icon="fa-solid fa-wave-square" />
Vue
<font-awesome-icon icon="fa-solid fa-wave-square" />
wave square
Web
<i class='fa-solid fa-wave-square' style='color: white'></i>
React
<FontAwesomeIcon icon="fa-solid fa-wave-square" style={{color: 'white'}} />
Vue
<font-awesome-icon icon="fa-solid fa-wave-square" :style="{color: 'white'}" />
wave square
Web
<i class='fa-solid fa-wave-square' style='color: red'></i>
React
<FontAwesomeIcon icon="fa-solid fa-wave-square" style={{color: 'red'}} />
Vue
<font-awesome-icon icon="fa-solid fa-wave-square" :style="{color: 'red'}" />
wave square
Web
<i class='fa-solid fa-wave-square' style='color: blue'></i>
React
<FontAwesomeIcon icon="fa-solid fa-wave-square" style={{color: 'blue'}} />
Vue
<font-awesome-icon icon="fa-solid fa-wave-square" :style="{color: 'blue'}" />
wave square
Web
<i class='fa-solid fa-wave-square' style='color: #f3da35'></i>
React
<FontAwesomeIcon icon="fa-solid fa-wave-square" style={{color: '#f3da35'}} />
Vue
<font-awesome-icon icon="fa-solid fa-wave-square" :style="{color: '#f3da35'}" />
How to add Font Awesome wave square Icon ?
Font Awesome Icon fas fa wave square 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 wave square
<!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-wave-square'></i>
</body>
</html>
Tags
Water Square,Grid Wave
Change Font Awesome Icon Wave square 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-wave-square blue-color'></i>
<i class='fas fa-wave-square green-color'></i>
<i class='fas fa-wave-square teal-color'></i>
<i class='fas fa-wave-square yellow-color'></i>
<i class='fas fa-wave-square 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">
Wave Square Icon Font Awesome - FAQs
⭐What is the Font Awesome Wave Square Icon code?Icon Code is - fas fa-wave-square.
⭐ What does the fas fa-wave-square Icon mean?fas fa-wave-square is the Icon code of Font Awesome Wave Square.
⭐ Can we add fas fa-wave-square Icon in different sizes?Yes, you can Icon of fas fa-wave-square in various pixels.
⭐ How to add a Blue color Font Awesome Wave Square Icon?Add the blue color Wave Square icon of the font awesome by using code: fas fa-wave-square style='color: blue;'.
⭐ How to make white color icon of a Font Awesome Wave Square?To change the Wave Square icon to white color use code: fas fa-wave-square style='color: white;'.
Advertisements
Advertisements