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