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