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