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