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