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