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