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