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