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