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