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