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