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