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