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