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