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