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