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