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