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