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