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