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