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