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