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