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