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