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