Use on the webTotal Use [ 3580 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/c7153f919a2c7165b846078fb63038ef?family=Orange+Grey+Wow+Fiftyfive" 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/c7153f919a2c7165b846078fb63038ef?family=Orange+Grey+Wow+Fiftyfive);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Orange Grey Wow Fiftyfive";
src: url("https://db.onlinewebfonts.com/t/c7153f919a2c7165b846078fb63038ef.eot");
src: url("https://db.onlinewebfonts.com/t/c7153f919a2c7165b846078fb63038ef.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c7153f919a2c7165b846078fb63038ef.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c7153f919a2c7165b846078fb63038ef.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c7153f919a2c7165b846078fb63038ef.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c7153f919a2c7165b846078fb63038ef.svg#Orange Grey Wow Fiftyfive")format("svg");
}
2CSS rules to specify fonts
font-family: "Orange Grey Wow Fiftyfive";