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