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