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