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