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