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