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