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