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