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