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