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