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