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