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