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