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