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