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