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