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