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