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