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