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