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