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