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