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