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