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