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