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