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