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