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