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