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