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