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