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