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