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