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