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