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