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