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