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