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