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