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