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