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