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