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