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