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