Search Results
Font Awesome Angle Up Icon (Arrow Pointing, Angle Pointing Upwards, Ascending)
Fontawesome Version 4.X
angle up
<i class='fa fa-angle-up'></i>
angle up
<i class='fa fa-angle-up' style='color: white'></i>
angle up
<i class='fa fa-angle-up' style='color: red'></i>
angle up
<i class='fa fa-angle-up' style='color: blue'></i>
angle up
<i class='fa fa-angle-up' style='color: #f3da35'></i>
Fontawesome Version 5.X
angle up
<i class='fas fa-angle-up'></i>
angle up
<i class='fas fa-angle-up' style='color: white'></i>
angle up
<i class='fas fa-angle-up' style='color: red'></i>
angle up
<i class='fas fa-angle-up' style='color: blue'></i>
angle up
<i class='fas fa-angle-up' style='color: #f3da35'></i>
Fontawesome Version 6.X
angle up
Web
<i class='fa-solid fa-angle-up'></i>
React
<FontAwesomeIcon icon="fa-solid fa-angle-up" />
Vue
<font-awesome-icon icon="fa-solid fa-angle-up" />
angle up
Web
<i class='fa-solid fa-angle-up' style='color: white'></i>
React
<FontAwesomeIcon icon="fa-solid fa-angle-up" style={{color: 'white'}} />
Vue
<font-awesome-icon icon="fa-solid fa-angle-up" :style="{color: 'white'}" />
angle up
Web
<i class='fa-solid fa-angle-up' style='color: red'></i>
React
<FontAwesomeIcon icon="fa-solid fa-angle-up" style={{color: 'red'}} />
Vue
<font-awesome-icon icon="fa-solid fa-angle-up" :style="{color: 'red'}" />
angle up
Web
<i class='fa-solid fa-angle-up' style='color: blue'></i>
React
<FontAwesomeIcon icon="fa-solid fa-angle-up" style={{color: 'blue'}} />
Vue
<font-awesome-icon icon="fa-solid fa-angle-up" :style="{color: 'blue'}" />
angle up
Web
<i class='fa-solid fa-angle-up' style='color: #f3da35'></i>
React
<FontAwesomeIcon icon="fa-solid fa-angle-up" style={{color: '#f3da35'}} />
Vue
<font-awesome-icon icon="fa-solid fa-angle-up" :style="{color: '#f3da35'}" />
How to add Font Awesome angle up Icon ?
Font Awesome Icon fa fa angle up 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 angle up
<!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-angle-up'></i>
</body>
</html>
Tags
increase,Arrow pointing upwards,Angle pointing upwards, Upward-facing triangle ,Ascending arrow
Change Font Awesome Icon Angle up 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-angle-up blue-color'></i>
<i class='fa fa-angle-up green-color'></i>
<i class='fa fa-angle-up teal-color'></i>
<i class='fa fa-angle-up yellow-color'></i>
<i class='fa fa-angle-up 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'>
Angle Up Icon Font Awesome - FAQs
⭐What is the Font Awesome Angle Up Icon code?Icon Code is - fa fa-angle-up.
⭐ What does the fa fa-angle-up Icon mean?fa fa-angle-up is the Icon code of Font Awesome Angle Up.
⭐ Can we add fa fa-angle-up Icon in different sizes?Yes, you can Icon of fa fa-angle-up in various pixels.
⭐ How to add a Blue color Font Awesome Angle Up Icon?Add the blue color Angle Up icon of the font awesome by using code: fa fa-angle-up style='color: blue;'.
⭐ How to make white color icon of a Font Awesome Angle Up?To change the Angle Up icon to white color use code: fa fa-angle-up style='color: white;'.
Advertisements
Advertisements