How to add the refresh icon on button in the font-awesome-4.7.0 version in .Net using C#
<!DOCTYPE html> <html> <head> <title>Font Awesome Icons</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <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-rotate-right" aria-hidden="true"></i> </body> </html>
The refresh symbol with a right rotation orientation is added to our website using the code above.