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