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