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