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