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