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