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