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