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