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