Use on the webTotal Use [ 4141 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/94efc5949f24354745c55dcf8ba8ba3b?family=Awesome+80s" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/94efc5949f24354745c55dcf8ba8ba3b?family=Awesome+80s);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Awesome 80s";
src: url("https://db.onlinewebfonts.com/t/94efc5949f24354745c55dcf8ba8ba3b.eot");
src: url("https://db.onlinewebfonts.com/t/94efc5949f24354745c55dcf8ba8ba3b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/94efc5949f24354745c55dcf8ba8ba3b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/94efc5949f24354745c55dcf8ba8ba3b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/94efc5949f24354745c55dcf8ba8ba3b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/94efc5949f24354745c55dcf8ba8ba3b.svg#Awesome 80s")format("svg");
}
2CSS rules to specify fonts
font-family: "Awesome 80s";