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