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