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