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