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