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