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