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