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