<!DOCTYPE html>
<html> <head> <title>Font Awesome Icons</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" crossorigin="anonymous"> </head> <body> <div class="icons"> <a class="fas fa-icons" style="font-size:60px;text-decoration: none;text-shadow:1px 1px 2px #666666;"></a> </div> </body> <br> </html> |
This HTML code creates this icon.
|
<!DOCTYPE html>
<html> <head> <title>Font Awesome Icons</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" crossorigin="anonymous"> </head> <body> <div class="icons"> <a href="https://www.crownlibrary.com/" class="fas fa-book-open" style="font-size:60px;text-shadow:1px 1px 2px #666666;"> </a> <div> </body> <br> </html> |
This HTML code creates this icon.
|
<!DOCTYPE html>
<html> <head> <title>Font Awesome Icons</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" crossorigin="anonymous"> </head> <body> <div> <a class="fas fa-icons" style="color:#00b1e2; font-size:60px;text-decoration: none;text-shadow:1px 1px 2px #666666;"></a> </div> </body> <br> </html> |
This HTML code creates this icon.
|
<!DOCTYPE html>
<html> <head> <title>Font Awesome Icons</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" crossorigin="anonymous"> </head> <body> <div> <a href="https://www.crownlibrary.com/" class="fa fa-book-open" style="color:#00b1e2; text-decoration: none; font-size:60px; text-shadow:1px 1px 2px #666666;"> </a> <div> </body> <br> </html> |
This HTML code creates this icon.
|