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