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