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