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