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