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