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