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