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