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