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