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