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