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