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