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