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