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