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