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