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