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