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