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