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