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