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