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