Search Results
Font Awesome Telegram (Fa Fa Telegram ) HTML CSS Code
Fontawesome Version 4.X
telegram
<i class='fa fa-telegram'></i>
telegram
<i class='fa fa-telegram' style='color: white'></i>
telegram
<i class='fa fa-telegram' style='color: red'></i>
telegram
<i class='fa fa-telegram' style='color: blue'></i>
telegram
<i class='fa fa-telegram' style='color: #f3da35'></i>
Fontawesome Version 5.X
telegram
<i class='fab fa-telegram'></i>
telegram
<i class='fab fa-telegram' style='color: white'></i>
telegram
<i class='fab fa-telegram' style='color: red'></i>
telegram
<i class='fab fa-telegram' style='color: blue'></i>
telegram
<i class='fab fa-telegram' style='color: #f3da35'></i>
Fontawesome Version 6.X
telegram
Web
<i class='fa-brands fa-telegram'></i>
React
<FontAwesomeIcon icon="fa-brands fa-telegram" />
Vue
<font-awesome-icon icon="fa-brands fa-telegram" />
telegram
Web
<i class='fa-brands fa-telegram' style='color: white'></i>
React
<FontAwesomeIcon icon="fa-brands fa-telegram" style={{color: 'white'}} />
Vue
<font-awesome-icon icon="fa-brands fa-telegram" :style="{color: 'white'}" />
telegram
Web
<i class='fa-brands fa-telegram' style='color: red'></i>
React
<FontAwesomeIcon icon="fa-brands fa-telegram" style={{color: 'red'}} />
Vue
<font-awesome-icon icon="fa-brands fa-telegram" :style="{color: 'red'}" />
telegram
Web
<i class='fa-brands fa-telegram' style='color: blue'></i>
React
<FontAwesomeIcon icon="fa-brands fa-telegram" style={{color: 'blue'}} />
Vue
<font-awesome-icon icon="fa-brands fa-telegram" :style="{color: 'blue'}" />
telegram
Web
<i class='fa-brands fa-telegram' style='color: #f3da35'></i>
React
<FontAwesomeIcon icon="fa-brands fa-telegram" style={{color: '#f3da35'}} />
Vue
<font-awesome-icon icon="fa-brands fa-telegram" :style="{color: '#f3da35'}" />
How to add Font Awesome telegram Icon ?
Font Awesome Icon fa fa telegram 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 telegram
<!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-telegram'></i>
</body>
</html>
Tags
summons,telegraph,buzzer,cable,cablegram,call,flash,radiogram,report,signal,telex,wire,coded message,telegraphic message,teletype
Change Font Awesome Icon Telegram 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-telegram blue-color'></i>
<i class='fa fa-telegram green-color'></i>
<i class='fa fa-telegram teal-color'></i>
<i class='fa fa-telegram yellow-color'></i>
<i class='fa fa-telegram red-color'></i>
Output of the above example will be as below-
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
Advertisements
Advertisements