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