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