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