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