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