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