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