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