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