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