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