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