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