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