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