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