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