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