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