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