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