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