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