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