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