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