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