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