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