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