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