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