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