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