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