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