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