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