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