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