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