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