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