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