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