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