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