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