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