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