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