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