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