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